* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700;900&display=swap');
body {
    font-family: 'Noto Sans SC', -apple-system, 'Segoe UI', sans-serif;
    background: #f0f4ff;
    color: #333;
    min-height: 100vh;
    scroll-behavior: smooth;
}
a { text-decoration: none; color: inherit; }

:root {
    --ll-100: #e8eaff;
    --ll-200: #c5caff;
    --ll-300: #9ea5ff;
    --ll-400: #7c85ff;
    --ll-500: #5b64ff;
    --ll-600: #4a52e0;
    --ll-700: #3a41c0;
    --ll-800: #2a31a0;
    --ll-900: #1a2180;
    --ll-grad: linear-gradient(135deg, #FF6B35 0%, #FF4081 25%, #9C27B0 50%, #3F51B5 75%, #00BCD4 100%);
    --ll-grad-light: linear-gradient(135deg, #ffe8e0 0%, #ffe0eb 25%, #f3e5f5 50%, #e8eaf6 75%, #e0f7fa 100%);
    --shadow: 0 4px 20px rgba(75, 82, 255, 0.12);
    --shadow-lg: 0 8px 40px rgba(75, 82, 255, 0.18);
    --radius: 16px;
    --radius-sm: 10px;
}

.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--ll-200);
    box-shadow: 0 2px 12px rgba(75, 82, 255, 0.08);
}
.top-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 64px;
    gap: 32px;
}
.logo {
    font-size: 22px;
    font-weight: 900;
    background: var(--ll-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    letter-spacing: 1px;
}
.logo small {
    font-size: 12px;
    font-weight: 400;
    -webkit-text-fill-color: #999;
    letter-spacing: 0;
}
.nav-tabs {
    display: flex;
    gap: 4px;
    flex: 1;
}
.nav-tab {
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    color: #888;
    border: none;
    background: transparent;
    font-family: inherit;
    position: relative;
}
.nav-tab:hover {
    color: var(--ll-600);
    background: var(--ll-100);
}
.nav-tab.active {
    color: #fff;
    background: var(--ll-grad);
    box-shadow: 0 4px 12px rgba(75, 82, 255, 0.35);
}

.page {
    display: none;
    padding-top: 80px;
    min-height: 100vh;
    animation: fadeUp 0.5s ease;
}
.page.active { display: block; }
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.page-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 60px;
}
.section-title {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 4px;
    background: var(--ll-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-sub {
    color: #999;
    font-size: 13px;
    margin-bottom: 20px;
    border-left: 3px solid var(--ll-400);
    padding-left: 12px;
}

.band-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}
.band-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s;
    cursor: pointer;
    border: 2px solid transparent;
}
.band-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--ll-300);
}
.band-header {
    padding: 16px 20px 12px;
    position: relative;
    overflow: hidden;
}
.band-header::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -30%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    opacity: 0.10;
}
.band-header.muse::before    { background: #FF6B35; }
.band-header.aqours::before  { background: #00BCD4; }
.band-header.nijigasaki::before { background: #FF4081; }
.band-header.liella::before  { background: #FFB300; }
.band-header.hasunosora::before { background: #9C27B0; }
.band-header.bluebird::before { background: #2196F3; }

.band-header.muse    { background: linear-gradient(135deg, #fff3e0, #ffe0b2); }
.band-header.aqours  { background: linear-gradient(135deg, #e0f7fa, #b2ebf2); }
.band-header.nijigasaki { background: linear-gradient(135deg, #fce4ec, #f8bbd0); }
.band-header.liella  { background: linear-gradient(135deg, #fff8e1, #ffecb3); }
.band-header.hasunosora { background: linear-gradient(135deg, #f3e5f5, #e1bee7); }
.band-header.bluebird { background: linear-gradient(135deg, #e3f2fd, #bbdefb); }

.band-name {
    font-size: 18px;
    font-weight: 900;
    position: relative;
    z-index: 1;
}
.band-name.muse-en    { color: #FF6B35; }
.band-name.aqours-en  { color: #00ACC1; }
.band-name.nijigasaki-en { color: #E91E63; }
.band-name.liella-en  { color: #FFA000; }
.band-name.hasunosora-en { color: #7B1FA2; }
.band-name.bluebird-en { color: #1976D2; }

.band-sub {
    font-size: 12px;
    color: #888;
    margin-top: 1px;
    position: relative;
    z-index: 1;
}
.band-members {
    padding: 12px 24px 20px;
}
.member-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: background 0.2s;
    cursor: pointer;
}
.member-row:hover { background: var(--ll-100); }
.member-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    flex-shrink: 0;
    background: var(--ll-grad);
    overflow: hidden;
}
.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    padding: 2px;
}
.band-members { padding: 8px 20px 14px; }
.member-row { padding: 5px 10px; gap: 10px; }
.member-name { font-size: 13px; }
.member-name .jp { font-size: 11px; }
.member-role { font-size: 11px; }
.member-link { font-size: 11px; padding: 2px 10px; }

.member-avatar.alt1 { background: linear-gradient(135deg, #ff6f00, #ffa040); }
.member-avatar.alt2 { background: linear-gradient(135deg, #00bcd4, #4dd0e1); }
.member-avatar.alt3 { background: linear-gradient(135deg, #7b1fa2, #ab47bc); }
.member-avatar.alt4 { background: linear-gradient(135deg, #f9a825, #ffd54f); }
.member-avatar.alt5 { background: linear-gradient(135deg, #d32f2f, #ef5350); }
.member-avatar.alt6 { background: linear-gradient(135deg, #2e7d32, #66bb6a); }
.member-avatar.alt7 { background: linear-gradient(135deg, #283593, #5c6bc0); }

.member-info { flex: 1; }
.member-name {
    font-weight: 600;
    font-size: 15px;
}
.member-name .jp {
    font-weight: 400;
    color: #999;
    font-size: 13px;
    margin-left: 6px;
}
.member-role {
    font-size: 12px;
    color: #aaa;
}
.member-link {
    color: var(--ll-500);
    font-size: 13px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 12px;
    background: var(--ll-100);
    transition: all 0.2s;
    white-space: nowrap;
}
.member-link:hover {
    background: var(--ll-500);
    color: #fff;
}

.intro-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 20px;
    align-items: start;
}
.intro-sidebar {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    position: sticky;
    top: 88px;
}
.intro-avatar-box {
    background: var(--ll-grad);
    padding: 16px 16px 14px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.intro-avatar-box::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(255,255,255,0.15) 0%, transparent 60%);
}
.intro-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    margin: 0 auto 6px;
    position: relative;
    z-index: 1;
    border: 3px solid rgba(255,255,255,0.5);
}
.intro-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
    border-radius: 50%;
}
.intro-avatar-name {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}
.intro-avatar-name .jp {
    font-size: 11px;
    font-weight: 400;
    opacity: 0.85;
    display: block;
}
.intro-info-list {
    padding: 12px 20px;
}
.intro-info-item {
    display: flex;
    justify-content: space-between;
    padding: 7px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 13px;
}
.intro-info-item:last-child { border-bottom: none; }
.intro-info-item .label { color: #aaa; font-weight: 400; }
.intro-info-item .value { color: #333; font-weight: 600; text-align: right; }

.intro-main {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px;
}
.intro-main h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--ll-700);
}
.intro-main p {
    line-height: 1.9;
    font-size: 15px;
    color: #555;
    margin-bottom: 16px;
    text-indent: 2em;
}
.intro-tag {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    margin: 0 6px 8px 0;
    background: var(--ll-100);
    color: var(--ll-700);
}
.intro-tag.alt1 { background: #fff3e0; color: #e65100; }
.intro-tag.alt2 { background: #e0f7fa; color: #00838f; }
.intro-tag.alt3 { background: #f3e5f5; color: #6a1b9a; }
.intro-tag.alt4 { background: #e8f5e9; color: #2e7d32; }

.quote-box {
    background: linear-gradient(135deg, #fce4ec, #f8bbd0);
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    margin: 16px 0;
    position: relative;
}
.quote-box::before {
    content: '"';
    font-size: 60px;
    color: var(--ll-400);
    position: absolute;
    top: 4px;
    left: 12px;
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.5;
}
.quote-box p {
    text-indent: 0;
    font-style: italic;
    color: #555;
    margin-bottom: 4px;
}
.quote-box .cite {
    text-align: right;
    font-size: 13px;
    color: var(--ll-600);
    font-weight: 500;
}

.story-timeline {
    position: relative;
    padding-left: 40px;
}
.story-timeline::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--ll-300), var(--ll-600));
    border-radius: 2px;
}
.story-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 20px 24px;
    margin-bottom: 24px;
    position: relative;
    transition: all 0.3s;
    border: 1px solid transparent;
}
.story-card:hover {
    border-color: var(--ll-300);
    box-shadow: var(--shadow-lg);
}
.story-card::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 24px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--ll-500);
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px var(--ll-300);
}
.story-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.story-card-title {
    font-weight: 700;
    font-size: 17px;
    color: var(--ll-700);
}
.story-card-ep {
    font-size: 12px;
    color: #bbb;
    background: var(--ll-100);
    padding: 2px 12px;
    border-radius: 10px;
}
.story-card-body {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}
.story-card-body p { margin-bottom: 8px; }

.msg-bubble {
    display: flex;
    gap: 10px;
    margin: 16px 0;
    align-items: flex-start;
}
.msg-bubble.right { flex-direction: row-reverse; }
.msg-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    overflow: hidden;
    background: var(--ll-grad);
}
.msg-icon.other { background: linear-gradient(135deg, #90caf9, #42a5f5); }
.msg-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 3px;
    border-radius: 50%;
}
.msg-content {
    max-width: 75%;
    padding: 10px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.6;
    background: var(--ll-100);
    color: #444;
    border-bottom-left-radius: 4px;
    position: relative;
}
.msg-bubble.right .msg-content {
    background: var(--ll-500);
    color: #fff;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 4px;
}
.msg-time {
    font-size: 11px;
    color: #bbb;
    margin-top: 4px;
}
.msg-bubble.right .msg-time { text-align: right; }

.settings-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.settings-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.settings-card-header {
    padding: 14px 20px;
    background: var(--ll-grad);
    color: #fff;
    font-size: 15px;
}
.settings-card-body { padding: 16px; }
.settings-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
}
.settings-item:last-child { border-bottom: none; }
.settings-item-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--ll-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-right: 12px;
    flex-shrink: 0;
}
.settings-item-label {
    font-size: 12px;
    color: #aaa;
    min-width: 48px;
}
.settings-item-value {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.instrument-box {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #fff;
    border-radius: var(--radius);
    padding: 16px;
    text-align: center;
    margin-top: 16px;
}
.instrument-box h4 {
    font-size: 14px;
    color: var(--ll-300);
    margin-bottom: 8px;
    letter-spacing: 2px;
}
.instrument-box .model {
    font-size: 22px;
    font-weight: 700;
    font-family: Georgia, serif;
}
.instrument-box .desc {
    font-size: 13px;
    color: #aaa;
    margin-top: 6px;
}

.char-modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
    padding: 20px;
}
.char-modal-overlay.open { display: flex; }
.char-modal {
    background: #fff;
    border-radius: var(--radius);
    max-width: 560px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    animation: fadeUp 0.3s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.char-modal-header {
    background: var(--ll-grad);
    padding: 12px 16px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}
.char-modal-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    border: 3px solid rgba(255,255,255,0.4);
    flex-shrink: 0;
}
.char-modal-header-info h3 { font-size: 17px; }
.char-modal-header-info .sub { font-size: 13px; opacity: 0.85; }
.char-modal-close {
    margin-left: auto;
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.2s;
}
.char-modal-close:hover { background: rgba(255,255,255,0.35); }
.char-modal-body { padding: 24px 28px; }
.char-modal-body .info-row {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
}
.char-modal-body .info-row .lbl {
    width: 80px;
    color: #aaa;
    font-size: 14px;
}
.char-modal-body .info-row .val {
    flex: 1;
    font-weight: 500;
    font-size: 14px;
}
.char-modal-body p {
    margin-top: 12px;
    line-height: 1.8;
    color: #555;
    font-size: 14px;
}

.settings-band-bar, .intro-band-bar, .stories-band-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}
.settings-band-btn, .intro-band-btn, .stories-band-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 14px;
    background: #fff;
    border: 2px solid #f0f0f0;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: #555;
}
.settings-band-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border-color: var(--ll-200);
}
.settings-band-btn.active {
    background: var(--ll-grad);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(75, 82, 255, 0.25);
}

.settings-char-bar, .intro-char-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
    padding: 14px 18px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    min-height: 56px;
}
.settings-char-btn, .intro-char-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px 3px 3px;
    border-radius: 20px;
    background: var(--ll-100);
    cursor: pointer;
    transition: all 0.3s;
    font-size: 11px;
    font-weight: 500;
    color: #666;
    border: 2px solid transparent;
    user-select: none;
}
.settings-char-btn:hover { background: var(--ll-200); }
.settings-char-btn.active {
    background: var(--ll-grad);
    color: #fff;
    border-color: var(--ll-400);
}
.settings-char-avatar, .intro-char-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
}
img.settings-char-avatar, img.intro-char-avatar {
    width: 24px;
    height: 24px;
    padding: 5px;
    object-fit: contain;
    background: var(--ll-grad);
}

.settings-detail-top {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    position: relative;
}
.settings-detail-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 4px solid rgba(255,255,255,0.6);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.settings-detail-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
    border-radius: 50%;
}
.settings-detail-avatar span {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 900;
}
.settings-detail-title h2 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 2px;
}
.settings-detail-sub {
    font-size: 13px;
    color: #888;
}
.settings-detail-link {
    margin-left: auto;
    padding: 8px 20px;
    border-radius: 10px;
    background: rgba(255,255,255,0.85);
    color: var(--ll-700);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}
.settings-detail-link:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .top-bar-inner { padding: 0 12px; gap: 8px; }
    .logo { font-size: 16px; }
    .nav-tab { padding: 6px 12px; font-size: 12px; }
    .band-grid { grid-template-columns: 1fr; }
    .intro-layout { grid-template-columns: 1fr; }
    .intro-sidebar { position: static; }
    .settings-layout { grid-template-columns: 1fr; }
    .settings-band-bar { gap: 8px; }
    .settings-band-btn, .intro-band-btn, .stories-band-btn { padding: 8px 14px; font-size: 13px; }
    .settings-char-bar, .intro-char-bar { padding: 10px 14px; gap: 6px; }
    .settings-char-btn, .intro-char-btn { font-size: 12px; padding: 4px 12px 4px 4px; }
    .settings-detail-top { flex-wrap: wrap; padding: 20px; gap: 14px; }
    .settings-detail-link { margin-left: 0; }
    .settings-detail-title h2 { font-size: 20px; }
    .intro-band-bar { gap: 8px; }
    .intro-band-btn { padding: 8px 14px; font-size: 13px; }
    .intro-char-bar { padding: 10px 14px; gap: 6px; }
    .intro-char-btn { font-size: 12px; padding: 4px 12px 4px 4px; }
    .page-inner { padding: 16px 12px 80px; }
    .section-title { font-size: 24px; }
}

.footer {
    text-align: center;
    padding: 40px 24px;
    color: #ccc;
    font-size: 13px;
    border-top: 1px solid #f0f0f0;
    margin-top: 40px;
}
.footer .heart { color: var(--ll-500); }

.sakura-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}
.sakura-petal {
    position: absolute;
    top: -30px;
    border-radius: 50% 0 50% 0;
    opacity: 0;
    animation: sakuraFall var(--fall-duration, 12s) var(--fall-delay, 0s) ease-in infinite;
}
@keyframes sakuraFall {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg) scale(1);
        opacity: 0;
    }
    5% { opacity: var(--petal-opacity, 0.6); }
    25% { transform: translateY(25vh) translateX(var(--sway-1, 30px)) rotate(120deg) scale(1.05); }
    50% { transform: translateY(50vh) translateX(var(--sway-2, -20px)) rotate(240deg) scale(0.95); }
    75% { transform: translateY(75vh) translateX(var(--sway-3, 25px)) rotate(360deg) scale(1.02); }
    95% { opacity: var(--petal-opacity, 0.6); }
    100% {
        transform: translateY(105vh) translateX(var(--sway-4, -10px)) rotate(480deg) scale(0.8);
        opacity: 0;
    }
}
