/*
 * パフォーマンス最適化設定 (Issue #81 / Issue #153 PR7 で整理)
 *
 * 旧プロフィールページのグラスモーフィズム向け強制上書き
 * （.profile-content への白背景 !important 等）は、PR6 のプロフィール
 * 刷新でエフェクト自体が消滅したため削除した。
 * ここには全ページ共通のパフォーマンス・アクセシビリティ規則のみ残す。
 */

/* 装飾アニメーションの実行回数制御（動きを許可しているユーザーのみ） */
@media (prefers-reduced-motion: no-preference) {
    .starfield-background,
    .milky-way,
    .inoo-ripple,
    .footer-shooting-star {
        animation-iteration-count: 1 !important; /* 1回のみ実行 */
        animation-fill-mode: forwards !important;
    }
}

/* モバイルではアニメーションを短縮 */
@media (max-width: 768px) {
    * {
        animation-duration: 0.5s !important;
    }
}

/* prefers-reduced-motion 対応 */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    /* 装飾的要素を非表示 */
    .ripple,
    .shooting-star {
        display: none !important;
    }
}
