:root {
    --bg: #12071a;
    --card: rgba(30, 15, 40, 0.72);
    --accent: #ff4d8b;
    --accent-hover: #e63b74;
    --text: #ffe8f0;
    --text-muted: #c9a0b8;
    --success: #22c55e;
    --danger: #ef4444;
    --warning: #f59e0b;
    --border: rgba(255, 107, 157, 0.18);
    --glow: rgba(255, 77, 139, 0.45);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
    background: #12071a;
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

/* ===== Japan-themed Background ===== */
#jpBackground {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 77, 139, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 15% 30%, rgba(180, 60, 200, 0.22) 0%, transparent 60%),
        radial-gradient(ellipse 70% 50% at 85% 20%, rgba(255, 130, 80, 0.12) 0%, transparent 60%),
        linear-gradient(180deg,
            #1a0820 0%,
            #12071a 30%,
            #1c0a26 60%,
            #150618 100%);
}

#jpBackground::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 15%, rgba(255, 220, 240, 0.5) 0px, transparent 1.5px),
        radial-gradient(circle at 70% 25%, rgba(255, 220, 240, 0.4) 0px, transparent 1px),
        radial-gradient(circle at 40% 8%, rgba(255, 220, 240, 0.6) 0px, transparent 1.2px),
        radial-gradient(circle at 85% 12%, rgba(255, 220, 240, 0.35) 0px, transparent 1px),
        radial-gradient(circle at 12% 40%, rgba(255, 220, 240, 0.3) 0px, transparent 1px),
        radial-gradient(circle at 60% 5%, rgba(255, 220, 240, 0.5) 0px, transparent 1px);
    opacity: 0.7;
    animation: starTwinkle 4s ease-in-out infinite alternate;
}

@keyframes starTwinkle {
    0% { opacity: 0.5; }
    100% { opacity: 0.85; }
}

#jpBackground::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 107, 157, 0.08) 0%, transparent 3px),
        radial-gradient(circle at 75% 45%, rgba(255, 107, 157, 0.06) 0%, transparent 3px),
        radial-gradient(circle at 50% 75%, rgba(180, 60, 200, 0.07) 0%, transparent 3px);
    background-size: 120px 120px, 180px 180px, 200px 200px;
    opacity: 0.5;
}

/* Seigaiha (gelombang Jepang) pattern overlay */
#seigaiha {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.06;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%23ff6b9d' stroke-width='1.5'><circle cx='40' cy='40' r='38'/><circle cx='40' cy='40' r='28'/><circle cx='40' cy='40' r='18'/><circle cx='40' cy='40' r='8'/><circle cx='0' cy='0' r='38'/><circle cx='0' cy='0' r='28'/><circle cx='0' cy='0' r='18'/><circle cx='0' cy='0' r='8'/><circle cx='80' cy='0' r='38'/><circle cx='80' cy='0' r='28'/><circle cx='80' cy='0' r='18'/><circle cx='80' cy='0' r='8'/><circle cx='0' cy='80' r='38'/><circle cx='0' cy='80' r='28'/><circle cx='0' cy='80' r='18'/><circle cx='0' cy='80' r='8'/><circle cx='80' cy='80' r='38'/><circle cx='80' cy='80' r='28'/><circle cx='80' cy='80' r='18'/><circle cx='80' cy='80' r='8'/></g></svg>");
    background-size: 80px 80px;
}

/* Fuji silhouette */
#fujiBg {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    pointer-events: none;
    width: min(140vw, 1200px);
    height: 40vh;
    max-height: 380px;
    opacity: 0.55;
}

#fujiBg svg { width: 100%; height: 100%; display: block; }

/* Floating sakura petals - super lightweight */
#sakuraBgCanvas {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    width: 100%;
    height: 100%;
    opacity: 0.7;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: rgba(20, 8, 28, 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 107, 157, 0.22);
    box-shadow: 0 4px 24px rgba(255, 77, 139, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    background: linear-gradient(120deg, #ff6b9d 0%, #ffb36b 50%, #ff6b9d 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: logoShine 4s ease-in-out infinite;
    filter: drop-shadow(0 0 12px rgba(255, 107, 157, 0.6));
}

@keyframes logoShine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

nav { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.tab {
    padding: 0.5rem 1.2rem;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.tab.active, .tab:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

main { max-width: 900px; margin: 2rem auto; padding: 0 1.5rem; flex: 1; width: 100%; }

.panel {
    display: none;
    background: rgba(30, 15, 40, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 107, 157, 0.22);
    box-shadow: 0 8px 40px rgba(255, 77, 139, 0.1);
}
.panel.active { display: block; }

h2 { margin-bottom: 0.5rem; }
h3 { margin-bottom: 1rem; }
.desc { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 0.9rem; }

.input-group { display: flex; gap: 0.75rem; flex-wrap: wrap; }

input[type="text"], input[type="file"], select {
    flex: 1;
    padding: 0.75rem 1rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-size: 0.95rem;
    min-width: 200px;
}

input:focus, select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 77, 139, 0.18);
}

button {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #ff4d8b 0%, #e63b74 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(255, 77, 139, 0.35);
}

button:hover {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff4d8b 100%);
    box-shadow: 0 6px 24px rgba(255, 77, 139, 0.55);
    transform: translateY(-1px);
}
button:disabled { opacity: 0.5; cursor: not-allowed; }

#activeJobs { margin-top: 2rem; }

.job-card {
    background: rgba(30, 15, 40, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 107, 157, 0.22);
    border-radius: 12px;
    padding: 1.2rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(255, 77, 139, 0.08);
}

.job-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; }

.job-type {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    background: var(--accent);
    color: #fff;
}

.job-status { font-size: 0.85rem; font-weight: 600; }
.status-PENDING { color: var(--warning); }
.status-RUNNING { color: var(--accent); }
.status-SUCCESS { color: var(--success); }
.status-FAILED { color: var(--danger); }

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--bg);
    border-radius: 4px;
    overflow: hidden;
    margin: 0.75rem 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff4d8b, #ff8a5c, #ffb36b);
    background-size: 200% 100%;
    border-radius: 4px;
    transition: width 0.5s ease;
    animation: progressShine 2s linear infinite;
    box-shadow: 0 0 12px rgba(255, 107, 157, 0.6);
}

@keyframes progressShine {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.job-meta { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--text-muted); }

.job-actions { margin-top: 0.75rem; display: flex; gap: 0.5rem; }
.job-actions a {
    padding: 0.5rem 1rem;
    background: var(--success);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}
.job-actions a:hover { opacity: 0.9; }

.error-box {
    background: rgba(239,68,68,0.15);
    border: 1px solid var(--danger);
    border-radius: 8px;
    padding: 0.75rem;
    margin-top: 0.75rem;
    color: var(--danger);
    font-size: 0.85rem;
}

.btn-refresh { margin-bottom: 1rem; background: var(--card); border: 1px solid var(--border); }

footer {
    text-align: center;
    padding: 1.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    border-top: 1px solid var(--border);
    margin-top: 3rem;
}

footer strong { color: var(--accent); }

.preview-box {
    margin-top: 0.9rem;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 120px;
    border: 1px solid var(--border);
}

.preview-box video {
    width: 100%;
    max-height: 400px;
    display: block;
    background: #000;
}

.preview-box img {
    max-width: 100%;
    max-height: 400px;
    display: block;
    object-fit: contain;
}

.job-actions .btn-open {
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--text);
}

.job-actions .btn-open:hover {
    background: var(--bg);
}

.history-actions {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.btn-danger {
    background: var(--danger);
}
.btn-danger:hover {
    background: #dc2626;
}

.btn-delete {
    background: var(--danger);
    border: none;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
}
.btn-delete:hover { background: #dc2626; }

.compare-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1rem;
}

@media (max-width: 640px) {
    .compare-wrap { grid-template-columns: 1fr; }
}

.compare-col {
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.compare-label {
    background: var(--card);
    padding: 0.4rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.compare-label.before { color: var(--warning); }
.compare-label.after { color: var(--success); }

.compare-col video,
.compare-col img {
    width: 100%;
    display: block;
    max-height: 360px;
    object-fit: contain;
    background: #000;
}

.file-info {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.file-info span {
    background: var(--bg);
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    border: 1px solid var(--border);
}

.file-info .badge-hd {
    background: linear-gradient(90deg, var(--accent), #a78bfa);
    color: #fff;
    border: none;
    font-weight: 700;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.tool-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.2rem;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.tool-card:hover {
    border-color: var(--accent);
    background: rgba(99, 102, 241, 0.08);
}

.tool-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.tool-name { font-size: 0.85rem; font-weight: 600; }

.tool-panel {
    display: none;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.tool-panel.active { display: block; }
.tool-panel h3 { margin-bottom: 0.5rem; }

.field-row {
    margin-bottom: 1rem;
}

.field-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
}

.field-row input[type="number"] {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.field-row input[type="number"]:focus {
    outline: none;
    border-color: var(--accent);
}

.inline-fields {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.inline-fields select { flex: 1; min-width: 140px; }

.fps-presets {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.chip {
    padding: 0.35rem 0.85rem;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.15s;
    white-space: nowrap;
}

.chip:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.warn-text {
    color: var(--warning) !important;
    font-size: 0.78rem !important;
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
}

.btn-cancel {
    background: var(--warning);
    border: none;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
}
.btn-cancel:hover { background: #d97706; }

#welcomeOverlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: radial-gradient(ellipse at top, #1a0f2e 0%, #0a0514 60%, #000 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease;
}

#welcomeOverlay.fade-out {
    opacity: 0;
    pointer-events: none;
}

#sakuraCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.welcome-stage {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.8s ease, transform 0.8s ease;
    pointer-events: none;
    text-align: center;
    padding: 1rem;
    will-change: opacity, transform;
}

.welcome-stage.show {
    opacity: 1;
    transform: scale(1);
}

.jp-big {
    font-family: "Yu Mincho", "Noto Serif JP", serif;
    font-size: clamp(3.5rem, 14vw, 9rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.15em;
    text-shadow:
        0 0 20px rgba(255, 105, 180, 0.9),
        0 0 40px rgba(255, 105, 180, 0.5),
        0 0 80px rgba(180, 60, 200, 0.4);
    animation: jpPulse 3s ease-in-out infinite;
}

@keyframes jpPulse {
    0%, 100% { text-shadow: 0 0 20px rgba(255, 105, 180, 0.9), 0 0 40px rgba(255, 105, 180, 0.5); }
    50% { text-shadow: 0 0 30px rgba(255, 105, 180, 1), 0 0 60px rgba(255, 105, 180, 0.8), 0 0 100px rgba(180, 60, 200, 0.6); }
}

.jp-romaji {
    margin-top: 1.2rem;
    font-size: clamp(0.9rem, 2.4vw, 1.3rem);
    color: rgba(255, 200, 230, 0.85);
    letter-spacing: 0.3em;
    font-weight: 300;
}

.jp-kanji {
    font-family: "Yu Mincho", "Noto Serif JP", serif;
    font-size: clamp(5rem, 22vw, 14rem);
    font-weight: 900;
    color: transparent;
    background: linear-gradient(135deg, #ff6b9d 0%, #ff4d6d 30%, #c4316b 60%, #7b2d8e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    letter-spacing: 0.1em;
    filter: drop-shadow(0 0 30px rgba(255, 77, 109, 0.8));
    animation: kanjiGlow 2.6s ease-in-out infinite;
}

@keyframes kanjiGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(255, 77, 109, 0.6)); }
    50% { filter: drop-shadow(0 0 50px rgba(255, 77, 109, 1)) drop-shadow(0 0 80px rgba(180, 60, 200, 0.6)); }
}

.jp-kanji-sub {
    margin-top: 0.5rem;
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: rgba(255, 200, 230, 0.9);
    letter-spacing: 0.4em;
    font-weight: 300;
}

.sky-scene {
    position: relative;
    width: min(90vw, 700px);
    height: min(40vh, 280px);
    margin-bottom: 1.5rem;
}

.sky-scene .sun {
    position: absolute;
    bottom: 40%;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffe4b3 0%, #ffb36b 40%, #ff6b9d 70%, transparent 100%);
    filter: blur(2px);
    animation: sunRise 6s ease-out infinite alternate;
    box-shadow: 0 0 80px rgba(255, 107, 157, 0.8);
}

@keyframes sunRise {
    0% { transform: translateX(-50%) translateY(20px) scale(1); opacity: 0.85; }
    100% { transform: translateX(-50%) translateY(-10px) scale(1.05); opacity: 1; }
}

.sky-scene .fuji {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 200px solid transparent;
    border-right: 200px solid transparent;
    border-bottom: 160px solid #2a1035;
    filter: drop-shadow(0 0 30px rgba(120, 40, 160, 0.5));
}

.sky-scene .fuji::after {
    content: "";
    position: absolute;
    top: -50px;
    left: -60px;
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 50px solid #fff;
    filter: drop-shadow(0 0 10px rgba(255, 200, 230, 0.8));
}

.torii {
    position: absolute;
    bottom: 0;
    right: 8%;
    width: 120px;
    height: 130px;
}

.torii-top {
    position: absolute;
    top: 0;
    left: -10px;
    width: 140px;
    height: 12px;
    background: #c8102e;
    border-radius: 6px;
    box-shadow: 0 0 20px rgba(200, 16, 46, 0.9);
}

.torii-bar {
    position: absolute;
    top: 24px;
    left: 0;
    width: 120px;
    height: 8px;
    background: #c8102e;
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(200, 16, 46, 0.8);
}

.torii-pillar {
    position: absolute;
    bottom: 0;
    width: 10px;
    height: 110px;
    background: linear-gradient(180deg, #c8102e, #8b0820);
    box-shadow: 0 0 15px rgba(200, 16, 46, 0.7);
}

.torii-pillar.left { left: 10px; }
.torii-pillar.right { right: 10px; }

.logo-reveal {
    font-size: clamp(2rem, 7vw, 4.5rem);
    font-weight: 900;
    letter-spacing: 0.05em;
    background: linear-gradient(120deg, #ff6b9d 0%, #ffb36b 40%, #ffe4b3 60%, #ff6b9d 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: logoSlide 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 107, 157, 0.7));
    font-family: system-ui, -apple-system, sans-serif;
}

@keyframes logoSlide {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.logo-sub {
    margin-top: 0.6rem;
    font-size: clamp(0.8rem, 2.2vw, 1.1rem);
    color: rgba(255, 200, 230, 0.9);
    letter-spacing: 0.4em;
    font-weight: 300;
}

.stage-4 .credits-title {
    font-family: "Yu Mincho", "Noto Serif JP", serif;
    font-size: clamp(2.2rem, 8vw, 5rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.15em;
    text-shadow:
        0 0 20px rgba(255, 105, 180, 0.9),
        0 0 60px rgba(180, 60, 200, 0.6);
}

.credits-sub {
    margin-top: 0.6rem;
    color: rgba(255, 200, 230, 0.85);
    letter-spacing: 0.3em;
    font-size: clamp(0.85rem, 2.2vw, 1.15rem);
    font-weight: 300;
}

.credits-by {
    margin-top: 2rem;
    color: #fff;
    font-size: clamp(0.95rem, 2.4vw, 1.2rem);
    letter-spacing: 0.1em;
}

.credits-by strong {
    color: #ff6b9d;
    text-shadow: 0 0 15px rgba(255, 107, 157, 0.8);
}

.credits-dream {
    margin-top: 0.8rem;
    color: rgba(255, 200, 230, 0.75);
    font-size: clamp(0.75rem, 2vw, 0.95rem);
    letter-spacing: 0.2em;
    font-style: italic;
}

#skipWelcome {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 10;
    padding: 0.5rem 1.1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(8px);
    transition: all 0.2s;
}

#skipWelcome:hover {
    background: rgba(255, 107, 157, 0.25);
    border-color: rgba(255, 107, 157, 0.6);
    box-shadow: 0 0 20px rgba(255, 107, 157, 0.5);
}

@media (prefers-reduced-motion: reduce) {
    .jp-big, .jp-kanji, .logo-reveal, .sky-scene .sun { animation: none; }
}
