/*
Theme Name: BGMATE Child
Template: twentytwentyone
Version: 2.4
Description: BGMATE フリーBGM配布サイト用子テーマ
Author: BGMATE
*/

/* ===== Twenty Twenty-One 上書き ===== */
body {
    background: #f8f9fa !important;
    color: #333;
}

#content {
    background: #f8f9fa !important;
}

.site-main {
    background: #f8f9fa !important;
}

/* ===== 変数 ===== */
:root {
    --color-dark: #1a1a2e;
    --color-navy: #16213e;
    --color-accent: #ff6b35;
    --color-accent2: #ff4081;
    --color-yellow: #f4d03f;
    --color-bg: #f8f9fa;
    --color-card: #ffffff;
    --color-text: #333333;
    --color-text-light: #666666;
    --radius: 8px;
    --radius-lg: 12px;
    --shadow: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 24px rgba(0,0,0,0.12);
}

/* ===== 基本レイアウト ===== */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ===== ヘッダー（ダークネイビー・統一） ===== */
.site-header {
    background: var(--color-dark) !important;
    padding: 0 !important;
    border-bottom: none !important;
    width: 100%;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-branding {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.site-logo-link {
    text-decoration: none;
    color: #fff;
}

.site-logo-text {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #fff;
    line-height: 1.2;
}

.site-tagline {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin: 0;
    line-height: 1.4;
}

/* ===== ナビゲーション ===== */
.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: block;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 16px;
    border-radius: var(--radius);
    transition: all 0.2s;
}

.nav-menu a:hover,
.nav-menu .current-menu-item a {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

/* モバイルメニュートグル */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }
    .menu-toggle {
        display: flex;
    }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-dark);
        flex-direction: column;
        padding: 16px 20px;
        gap: 4px;
    }
    .nav-menu.active {
        display: flex;
    }
    .main-navigation {
        position: relative;
    }
}

/* ===== ヒーローセクション ===== */
.hero {
    text-align: center;
    padding: 100px 20px 80px;
    background: linear-gradient(135deg, #f39c12 0%, #ff6b35 40%, #ff4081 100%);
    color: #fff;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.06)"/><circle cx="90" cy="90" r="2.5" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 100px 100px;
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 16px;
    font-weight: 800;
    position: relative;
    z-index: 1;
    letter-spacing: -1px;
}

.hero-desc {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

.hero .btn {
    background: var(--color-dark);
    color: #fff;
    padding: 16px 48px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    background: #2a2a4e;
}

/* ===== セクション ===== */
.section {
    margin-bottom: 64px;
    padding: 0 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    margin-bottom: 24px;
}

.section-header h2 {
    font-size: 26px;
    margin-bottom: 4px;
    font-weight: 800;
    color: var(--color-text);
}

.section-header .sub {
    font-size: 13px;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== 検索セクション ===== */
.search-section {
    background: var(--color-bg);
    padding: 40px 20px;
    margin-bottom: 0;
}

.search-box {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 0;
    border: 2px solid #ddd;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fff;
}

.search-box select {
    padding: 14px 20px;
    border: none;
    border-right: 1px solid #eee;
    background: #f8f9fa;
    font-size: 15px;
    min-width: 140px;
    cursor: pointer;
    outline: none;
}

.search-box input[type="text"] {
    flex: 1;
    padding: 14px 20px;
    border: none;
    font-size: 15px;
    outline: none;
}

.search-box button {
    padding: 14px 36px;
    background: var(--color-dark);
    color: #fff;
    border: none;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.search-box button:hover {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent2) 100%);
}

/* ===== 絞り込みタグ ===== */
.filter-section {
    background: var(--color-bg);
    padding: 24px 20px;
    margin-bottom: 48px;
}

.filter-dropdown {
    max-width: 400px;
    margin: 0 auto;
}

.filter-dropdown select {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    background: #fff;
    cursor: pointer;
}

/* ===== 楽曲グリッド ===== */
.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    padding: 0;
}

/* ===== 楽曲カード（BGMer風） ===== */
.music-card {
    background: var(--color-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
    border: 1px solid #e8e8e8;
}

.music-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.card-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    overflow: hidden;
}

.card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.music-card:hover .card-thumb img {
    transform: scale(1.05);
}

.no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: rgba(255,255,255,0.3);
}

/* サムネイル上の再生アイコン */
.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255,107,53,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s;
}

.play-overlay::after {
    content: '▶';
    color: #fff;
    font-size: 24px;
    margin-left: 4px;
}

.music-card:hover .play-overlay {
    opacity: 1;
}

.card-body {
    padding: 16px;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.card-tags .tag {
    font-size: 11px;
    color: var(--color-accent);
    font-weight: 600;
}

.card-title {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.4;
    color: var(--color-text);
}

/* カードタイトルの装飾記号は削除（プロフェッショナルな印象に） */

.card-mood {
    font-size: 13px;
    color: var(--color-text-light);
    margin-bottom: 12px;
}

/* カードムードの装飾記号は削除（プロフェッショナルな印象に） */

/* ダウンロードボタン（BGMer風） */
.card-downloads {
    display: flex;
    gap: 8px;
    padding: 0 16px 16px;
}

.download-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    background: var(--color-dark);
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
}

.download-btn:hover {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent2) 100%);
}

.download-btn .label {
    font-weight: 700;
}

.download-btn .time {
    font-size: 11px;
    opacity: 0.8;
}

/* ===== 詳細ページ ===== */
.music-single {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.music-single .music-title {
    font-size: 32px;
    margin-bottom: 24px;
    font-weight: 700;
}

.youtube-player {
    margin-bottom: 32px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.youtube-player iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.download-section {
    background: #fff;
    padding: 24px;
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    border: 1px solid #e8e8e8;
}

.download-section h2 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 700;
}

.download-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent2) 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255,107,53,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,107,53,0.4);
}

.btn-secondary {
    background: var(--color-dark);
    color: #fff;
}

.btn-secondary:hover {
    background: #2a2a4e;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
    border-radius: var(--radius);
}

.music-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
    padding: 16px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    border: 1px solid #e8e8e8;
}

.meta-item {
    font-size: 14px;
    color: var(--color-text-light);
}

.music-taxonomies {
    margin-bottom: 24px;
    padding: 16px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    border: 1px solid #e8e8e8;
}

.tax-group {
    margin-bottom: 8px;
    font-size: 14px;
}

.tax-group a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
}

.tax-group a:hover {
    text-decoration: underline;
}

/* ===== 一覧絞り込み ===== */
.filter-nav {
    margin-bottom: 32px;
    background: #fff;
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    border: 1px solid #e8e8e8;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-group h3 {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-tags .tag {
    padding: 8px 16px;
    background: #f0f0f0;
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--color-text);
    font-size: 14px;
    transition: all 0.2s;
    font-weight: 500;
}

.filter-tags .tag:hover {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent2) 100%);
    color: #fff;
}

.filter-tags .tag.active {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent2) 100%);
    color: #fff;
}

/* ===== カテゴリリンク（トップページ） ===== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: #fff;
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--color-text);
    transition: all 0.3s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    border: 1px solid #e8e8e8;
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

/* 背景画像がある場合は白文字 */
.category-card[style*="background-image"] {
    color: #fff;
    border-color: transparent;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-color: #ddd;
}

.category-card[style*="background-image"]:hover {
    color: #fff;
}

/* テキストを画像上に直接表示 — テキストシャドウで視認性担保 */
.category-card .cat-name,
.category-card .card-title {
    position: relative;
    z-index: 1;
    font-weight: 800;
    font-size: 15px;
    margin-bottom: 4px;
    text-align: center;
    line-height: 1.3;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0,0,0,0.95), 0 2px 8px rgba(0,0,0,0.7), 0 0 20px rgba(0,0,0,0.4);
    -webkit-text-stroke: 0.3px rgba(0,0,0,0.3);
}

.category-card .cat-count,
.category-card .card-count {
    position: relative;
    z-index: 1;
    font-size: 12px;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.9), 0 2px 6px rgba(0,0,0,0.5);
    opacity: 0.9;
}

/* ===== 雰囲気タグ ===== */
.mood-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mood-tag {
    padding: 10px 20px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--color-text);
    font-size: 14px;
    transition: all 0.2s;
    font-weight: 500;
}

.mood-tag:hover {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent2) 100%);
    color: #fff;
    border-color: transparent;
}

/* ===== ページネーション ===== */
.pagination {
    text-align: center;
    margin-top: 40px;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 12px 18px;
    margin: 0 4px;
    background: #fff;
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--color-text);
    font-weight: 600;
    box-shadow: var(--shadow);
    transition: all 0.2s;
}

.pagination .page-numbers:hover {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent2) 100%);
    color: #fff;
}

.pagination .page-numbers.current {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent2) 100%);
    color: #fff;
}

/* ===== セクションフッター ===== */
.section-footer {
    text-align: center;
    margin-top: 32px;
}

.section-footer .btn {
    background: #fff;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
    border-radius: var(--radius);
}

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

/* ===== 詳細ページ：説明文 ===== */
.music-description {
    background: #fff;
    padding: 24px;
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    border: 1px solid #e8e8e8;
    line-height: 1.8;
}

.music-description p {
    margin-bottom: 1em;
}

.music-description p:last-child {
    margin-bottom: 0;
}

/* ===== フッター ===== */
.site-footer {
    background: #252540;
    color: #fff;
    padding: 48px 20px 32px;
    margin-top: 64px;
}

.site-footer .site-info {
    text-align: center;
    font-size: 13px;
    opacity: 0.7;
}

.site-footer a {
    color: rgba(255,255,255,0.85);
}

.site-footer a:hover {
    color: var(--color-accent);
}

/* ===== Select要素のスタイル確保 ===== */
select {
    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;
    cursor: pointer;
}

/* ===== アーカイブページ共通 ===== */
.music-archive {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.music-archive h1 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 32px;
    color: var(--color-text);
    line-height: 1.3;
}

.music-archive .no-results {
    text-align: center;
    padding: 80px 20px;
    color: var(--color-text-light);
    font-size: 16px;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid #e8e8e8;
}

/* ===== WordPressデフォルト上書き ===== */
.entry-header {
    display: none;
}

.widget-area,
#secondary,
aside.widget-area {
    display: none !important;
}

/* 親テーマのコンテンツエリア調整 */
#primary,
.content-area {
    max-width: 100% !important;
}

/* ページタイトル調整 */
.page-title {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    font-size: 28px;
    font-weight: 800;
}

/* archiveページのヘッダー調整 */
.archive-header {
    max-width: 1200px;
    margin: 40px auto 20px;
    padding: 0 20px;
}

.archive-header .archive-title {
    font-size: 28px;
    font-weight: 800;
}

/* ===== フッター ===== */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: start;
}

.footer-brand {
    padding-top: 8px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #fff;
}

.footer-desc {
    font-size: 14px;
    opacity: 0.7;
    line-height: 1.6;
    color: #fff;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-nav-group h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-nav-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-group li {
    margin-bottom: 10px;
}

.footer-nav-group a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-nav-group a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    margin-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom .copyright {
    font-size: 13px;
    opacity: 0.5;
    color: #fff;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== 固定ページ ===== */
.page-content {
    background: var(--color-bg);
    padding: 64px 20px;
}

.page-container {
    max-width: 800px;
    margin: 0 auto;
}

.page-article {
    background: var(--color-card);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    border: 1px solid #e8e8e8;
}

.page-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 32px;
    color: var(--color-text);
    line-height: 1.3;
}

.page-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
}

.page-body h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 32px 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #eee;
    color: var(--color-text);
}

.page-body h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 24px 0 12px;
    color: var(--color-text);
}

.page-body p {
    margin-bottom: 1em;
}

.page-body ul,
.page-body ol {
    margin-bottom: 1em;
    padding-left: 1.5em;
}

.page-body li {
    margin-bottom: 0.5em;
}

.page-body a {
    color: var(--color-accent);
    text-decoration: none;
}

.page-body a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .page-article {
        padding: 24px;
    }
    .page-title {
        font-size: 24px;
    }
}
/* ===== シングルページ（BGMer風 2カラム） ===== */
.single-layout {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}

.single-left {
    position: sticky;
    top: 24px;
}

.youtube-player-large {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #000;
    aspect-ratio: 16 / 9;
}

.youtube-player-large iframe {
    width: 100% !important;
    height: 100% !important;
}

.youtube-player-large.no-video {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.no-video-inner {
    color: rgba(255,255,255,0.5);
    font-size: 18px;
}

.single-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.single-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-text);
    line-height: 1.3;
    margin: 0;
}

/* メタ情報リスト（BGMer風） */
.single-meta-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.meta-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.meta-row:last-child {
    border-bottom: none;
}

.meta-label {
    font-weight: 700;
    color: var(--color-text);
    min-width: 60px;
    flex-shrink: 0;
}

.meta-value {
    color: var(--color-text-light);
}

/* シンプルダウンロードボタン */
.single-downloads {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.dl-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #fff;
    border: 2px solid var(--color-dark);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--color-dark);
    font-weight: 700;
    font-size: 14px;
    transition: all 0.2s;
}

.dl-btn:hover {
    background: var(--color-dark);
    color: #fff;
}

.dl-icon {
    font-size: 16px;
}

.dl-time {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.7;
    margin-left: 4px;
}

/* 楽曲概要 */
.single-description {
    max-width: 1200px;
    margin: 48px auto;
    padding: 0 20px;
}

.single-description h2 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--color-text);
}

.single-description p {
    line-height: 1.8;
    color: var(--color-text-light);
}

/* カードのダウンロードボタンもシンプルに */
.download-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    background: var(--color-dark);
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
}

.download-btn:hover {
    background: #2a2a4e;
}

/* ヒーローのグラデーションも少し控えめに */
.hero {
    text-align: center;
    padding: 100px 20px 80px;
    background: linear-gradient(135deg, #f39c12 0%, #ff6b35 50%, #e74c3c 100%);
    color: #fff;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

/* ボタンプライマリーを単色に */
.btn-primary {
    background: var(--color-dark);
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    background: #2a2a4e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ===== レスポンシブ ===== */
@media (max-width: 768px) {
    .single-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .single-left {
        position: static;
    }
    .single-title {
        font-size: 22px;
    }
}
