/* =============================================
   リセット & 基本設定
   ============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* ===== ブログサイト準拠の暖色系カラーパレット ===== */

    /* メインカラー */
    --primary-color: #8b4513;        /* サドルブラウン（ブログと同一） */
    --primary-hover: #6b3410;        /* より濃いブラウン */
    --primary-light: #a0522d;        /* シエナ */

    --secondary-color: #d2691e;      /* チョコレート（ブログと同一） */
    --secondary-hover: #b8541a;      /* より濃いチョコレート */
    --secondary-light: #cd853f;      /* ペルー */

    --accent-color: #ff6347;         /* トマト（ブログと同一） */
    --accent-hover: #e5533d;         /* より濃いトマト */

    --success-color: #d2691e;        /* セカンダリと統一 */
    --warning-color: #ff6347;        /* アクセントと統一 */
    --danger-color: #cd5c5c;         /* インディアンレッド */
    --danger-hover: #b34747;         /* より濃いレッド */

    /* 背景色 */
    --bg-primary: #ffffff;           /* 白（ブログと同一） */
    --bg-secondary: #fdf6f0;         /* 薄いクリーム（ブログと同一） */
    --bg-tertiary: #faf5f0;          /* オフホワイト */
    --bg-gradient-start: #fdf6f0;    /* グラデーション開始 */
    --bg-gradient-end: #ffffff;      /* グラデーション終了 */

    /* テキストカラー */
    --text-primary: #3c2414;         /* ダークブラウン（ブログと同一） */
    --text-secondary: #8b7355;       /* 薄茶（ブログと同一） */
    --text-muted: #a89583;           /* より薄い茶色 */
    --text-white: #ffffff;           /* 白文字 */

    /* ボーダー・区切り線 */
    --border-color: #f0e6dc;         /* ベージュ（ブログと同一） */
    --border-dark: #d2c4b4;          /* 濃いベージュ */

    /* シャドウ（ブログと統一） */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 25px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.2);

    /* グラデーション定義 */
    --gradient-header: linear-gradient(135deg, #a0522d 0%, #cd853f 100%);
    --gradient-primary: linear-gradient(145deg, #8b4513, #d2691e);
    --gradient-secondary: linear-gradient(145deg, #d2691e, #ff6347);
    --gradient-bg: linear-gradient(180deg, #fdf6f0 0%, #ffffff 100%);

    /* その他 */
    --border-radius: 8px;
    --border-radius-sm: 4px;
    --border-radius-lg: 12px;

    --spacing-xs: 0.5rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;

    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--gradient-bg);
    min-height: 100vh;
}

/* =============================================
   レイアウト - アプリコンテナ
   ============================================= */
.app-container {
    max-width: 1200px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--bg-primary);
    box-shadow: var(--shadow-lg);
}

.app-main {
    flex: 1;
    padding: var(--spacing-xl);
}

/* =============================================
   アフィリエイト表示エリア
   ============================================= */
.affiliate-container {
    text-align: center;
    padding: 0;
    margin: 0;
    background: var(--bg-secondary);
}

.affiliate-container:empty {
    display: none;
}

.affiliate-container:not(:empty) {
    padding: var(--spacing-md) var(--spacing-xl);
}

@media (max-width: 768px) {
    .affiliate-container:not(:empty) {
        padding: var(--spacing-sm) var(--spacing-md);
    }
}

/* =============================================
   ヘッダー & ナビゲーション
   ============================================= */
.app-header {
    background: var(--gradient-header);
    color: var(--text-white);
    padding: var(--spacing-lg) var(--spacing-xl);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

/* 光るエフェクトを追加（ブログサイトと同じ） */
.app-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        transparent,
        rgba(255,255,255,0.5),
        transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.app-header h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

/* ヘッダータイトルのリンクを通常テキストと同様に表示 */
.site-title-link {
    text-decoration: none;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.site-title-link:hover,
.site-title-link:active,
.site-title-link:visited {
    text-decoration: none;
    color: inherit;
}

.app-nav {
    display: flex;
    gap: var(--spacing-sm);
}

.nav-btn {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    border: 2px solid transparent;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    position: relative;
    overflow: hidden;
}

/* ホバー時の背景アニメーション */
.nav-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.nav-btn:hover::before {
    width: 300px;
    height: 300px;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.nav-btn.active {
    background: var(--text-white);
    color: var(--primary-color);
    border-color: var(--text-white);
    box-shadow: var(--shadow-sm);
}

.nav-btn span {
    font-size: 1.1rem;
}

/* =============================================
   ビューデータ管理（SPA）
   ============================================= */
.view {
    display: none;
}

.view:not(.hidden) {
    display: block;
    animation: fadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================================
   ブロックシステム（順序変更可能）
   ============================================= */
.block {
    background: linear-gradient(145deg, var(--bg-primary), var(--bg-secondary));
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

/* ホバー時の立体感 */
.block:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* 上部のカラーバー（ブログの記事スタイルを踏襲） */
.block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.block:hover::before {
    transform: scaleX(1);
}

.block-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--border-color);
    position: relative;
}

/* タイトル下部のアクセントバー */
.block-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.block:hover .block-title::after {
    width: 120px;
}

.block-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-lg);
}

/* =============================================
   折りたたみ機能
   ============================================= */
.collapsible {
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: color 0.2s ease;
}

.collapsible:hover {
    color: var(--secondary-color);
}

.toggle-icon {
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
    font-size: 0.8em;
    color: var(--primary-color);
}

.collapsible.collapsed .toggle-icon {
    transform: rotate(-90deg);
    color: var(--text-muted);
}

.collapsible-content {
    max-height: 8000px;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 1;
}

.collapsible-content.collapsed {
    max-height: 0;
    opacity: 0;
}

/* =============================================
   プレーヤーブロック
   ============================================= */
.player-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.track-info {
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
    position: relative;
    overflow: hidden;
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

/* 装飾用の円形パターン */
.track-info::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.track-info::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.track-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-white);
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
    margin-bottom: var(--spacing-xs);
    position: relative;
    z-index: 1;
}

.track-meta {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.audio-player {
    width: 100%;
    height: 54px;
    border-radius: var(--border-radius);
}

.player-controls {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
}

.player-options {
    text-align: center;
}

.player-manage-link {
    text-align: center;
    padding: var(--spacing-sm) 0;
}

.player-status {
    text-align: center;
    padding: var(--spacing-sm);
    background: linear-gradient(145deg, var(--bg-tertiary), var(--bg-secondary));
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

/* =============================================
   曲リストブロック
   ============================================= */
.song-count {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-muted);
}

.songlist-container {
    max-height: 500px;
    overflow-y: auto;
}

.songlist-table {
    width: 100%;
    border-collapse: collapse;
}

.songlist-table thead {
    position: sticky;
    top: 0;
    background: linear-gradient(145deg, var(--bg-tertiary), var(--bg-secondary));
    z-index: 10;
}

.songlist-table th {
    padding: var(--spacing-sm) var(--spacing-md);
    text-align: left;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
    border-bottom: 2px solid var(--secondary-color);
}

.songlist-table td {
    padding: var(--spacing-sm) var(--spacing-md);
    border-bottom: 1px solid var(--border-color);
}

.songlist-table tbody tr {
    transition: var(--transition);
    border-left: 4px solid transparent;
    position: relative;
}

/* ホバー時のアニメーション */
.songlist-table tbody tr:hover {
    background: linear-gradient(90deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    border-left: 4px solid var(--secondary-color);
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

/* 現在再生中の曲のスタイル */
.songlist-table tbody tr.current-track {
    background: linear-gradient(90deg, #ffe4c4 0%, #ffd4a3 100%);
    border-left: 4px solid var(--accent-color);
    animation: pulse-row 2s ease-in-out infinite;
}

@keyframes pulse-row {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 99, 71, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(255, 99, 71, 0);
    }
}

/* 曲リスト内のボタン */
.songlist-table .btn-small {
    padding: 0.3rem 0.8rem;
    font-size: 0.85rem;
    border-radius: var(--border-radius-sm);
}

.empty-message {
    text-align: center;
    padding: var(--spacing-xl);
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* =============================================
   操作説明ブロック
   ============================================= */
.instructions-container {
    display: grid;
    gap: var(--spacing-lg);
}

.instruction-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.instruction-item p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
}

.instruction-item ul,
.instruction-item ol {
    color: var(--text-secondary);
    margin-left: var(--spacing-lg);
}

.instruction-item li {
    margin-bottom: var(--spacing-xs);
}

/* =============================================
   フォーム要素
   ============================================= */
.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.input-text,
.input-select {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    transition: border-color 0.2s ease;
}

.input-text:focus,
.input-select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.input-text:read-only {
    background: var(--bg-tertiary);
    color: var(--text-muted);
}

.song-display {
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-weight: 500;
    border: 1px solid var(--border-color);
}

/* =============================================
   ボタン
   ============================================= */
.btn {
    padding: var(--spacing-sm) var(--spacing-lg);
    border: none;
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* ホバー時の波紋エフェクト */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn-primary:hover:not(:disabled)::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
}

.btn-primary:active:not(:disabled) {
    transform: translateY(0);
}

.btn-secondary {
    background: linear-gradient(145deg, var(--bg-primary), var(--bg-tertiary));
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover:not(:disabled) {
    background: var(--gradient-secondary);
    color: var(--text-white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-danger {
    background: linear-gradient(145deg, #cd5c5c, #b34747);
    color: var(--text-white);
}

.btn-danger:hover:not(:disabled) {
    background: linear-gradient(145deg, #b34747, #9a3838);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(205, 92, 92, 0.4);
}

.btn-large {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.2rem;
    background: var(--gradient-primary);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.btn-large:hover:not(:disabled) {
    box-shadow: 0 6px 25px rgba(139, 69, 19, 0.5);
    animation: pulse-glow 1.5s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 6px 25px rgba(139, 69, 19, 0.5);
    }
    50% {
        box-shadow: 0 6px 35px rgba(139, 69, 19, 0.7);
    }
}

.btn-small {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
}

.button-group {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
}

/* ローディング状態 */
.btn.loading {
    pointer-events: none;
    opacity: 0.8;
    position: relative;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--text-white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* =============================================
   チェックボックス & ラジオボタン
   ============================================= */
.checkbox-label,
.radio-label {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    cursor: pointer;
    user-select: none;
    padding: var(--spacing-sm);
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.checkbox-label:hover,
.radio-label:hover {
    background: var(--bg-secondary);
}

.checkbox-label input,
.radio-label input {
    cursor: pointer;
}

.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

/* =============================================
   スライダー
   ============================================= */
.setting-group {
    margin-bottom: var(--spacing-xl);
}

.setting-group h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.slider-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--bg-tertiary), var(--bg-secondary));
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid var(--border-color);
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gradient-primary);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.4);
    transition: var(--transition);
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.6);
}

.slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gradient-primary);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.4);
    transition: var(--transition);
}

.slider::-moz-range-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.6);
}

.slider-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slider-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 1px 2px rgba(139, 69, 19, 0.1);
}

.slider-description {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* =============================================
   データ管理セクション
   ============================================= */
.management-section {
    padding: var(--spacing-lg);
    background: linear-gradient(145deg, var(--bg-tertiary), var(--bg-secondary));
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--spacing-lg);
    border: 1px solid var(--border-color);
}

.management-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.info-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.6);
    border-left: 3px solid var(--secondary-color);
    border-radius: var(--border-radius-sm);
}

.warning-text {
    color: var(--danger-color);
    font-weight: 500;
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm);
    background: rgba(205, 92, 92, 0.1);
    border-left: 3px solid var(--danger-color);
    border-radius: var(--border-radius-sm);
}

.result-message {
    margin-top: var(--spacing-md);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius);
    font-size: 0.9rem;
}

.result-message.success {
    background: #d1fae5;
    color: #065f46;
    border-left: 4px solid var(--success-color);
}

.result-message.error {
    background: #fee2e2;
    color: #991b1b;
    border-left: 4px solid var(--danger-color);
}

/* 曲名リンク */
.song-title-link {
    color: var(--primary-color);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.song-title-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* 操作セル */
.action-cell {
    display: flex;
    gap: var(--spacing-sm);
}

.action-cell .btn {
    padding: 4px 8px;
    font-size: 0.85rem;
}

/* =============================================
   デバッグセクション
   ============================================= */
.debug-output-container {
    display: grid;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.debug-output-section h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.json-output {
    background: linear-gradient(145deg, #2d1f14, #3c2414);
    color: #fdf6f0;
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    overflow-x: auto;
    max-height: 400px;
    border: 1px solid var(--border-dark);
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.3);
}

/* ローディングスピナー */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--text-white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* =============================================
   フッター
   ============================================= */
.app-footer {
    background: var(--bg-tertiary);
    padding: var(--spacing-lg);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid var(--border-color);
}

.app-footer p {
    margin: 0.5rem 0;
}

.feedback-link {
    margin-top: var(--spacing-md);
}

.feedback-link a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-md);
    background: rgba(139, 69, 19, 0.1);
}

.feedback-link a:hover {
    color: var(--text-white);
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(139, 69, 19, 0.3);
}

/* =============================================
   レスポンシブデザイン
   ============================================= */
@media (max-width: 768px) {
    .app-main {
        padding: var(--spacing-md);
    }

    .app-header {
        padding: var(--spacing-md);
    }

    .app-header h1 {
        font-size: 1.5rem;
    }

    .app-nav {
        flex-wrap: wrap;
    }

    .nav-btn {
        flex: 1;
        min-width: 120px;
        justify-content: center;
    }

    .player-controls {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
    }

    .songlist-container {
        max-height: 300px;
    }

    .songlist-table th,
    .songlist-table td {
        padding: var(--spacing-xs) var(--spacing-sm);
        font-size: 0.85rem;
    }

    .track-info {
        padding: var(--spacing-lg);
    }

    .track-title {
        font-size: 1.2rem;
    }

    .button-group {
        flex-direction: column;
    }

    .button-group .btn {
        width: 100%;
    }
}

/* =============================================
   ユーティリティクラス
   ============================================= */
.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }

.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }

/* =============================================
   登録フォーム
   ============================================= */
.level-form {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.level-form:hover {
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.1);
}

.level-form h3 {
    color: #764ba2;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.btn-select-files {
    display: block;
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border: 2px dashed #667eea;
    border-radius: 4px;
    background: white;
    color: #667eea;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
}

.btn-select-files:hover:not(:disabled) {
    border-color: #764ba2;
    background: #f0f4ff;
    transform: translateY(-2px);
}

.btn-select-files:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.file-list {
    background: white;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 15px;
    min-height: 50px;
}

.file-list.empty::before {
    content: "メディアファイルが選択されていません";
    color: #999;
    font-style: italic;
}

.file-item {
    padding: 8px;
    margin-bottom: 5px;
    background: #f0f4ff;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.file-name {
    font-weight: 500;
    color: #333;
}

.file-size {
    color: #666;
    font-size: 0.9rem;
}

.btn-register {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 100%;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-register:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn-register:disabled {
    background: #9e9e9e;
    cursor: not-allowed;
}
