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

/* ─── 테마 변수 (다크/라이트) ─── */
:root[data-theme="dark"], :root {
    --bg: #0a0a0a;
    --bg-elev: #141414;
    --bg-card: #1a1a1a;
    --bg-card-hover: #222;
    --border: #2a2a2a;
    --border-soft: #222;
    --text: #ffffff;
    --text-muted: #aaaaaa;
    --text-faint: #666666;
    --accent: #6cb8ff;
    --accent-bg: #1a3a5c;
}
:root[data-theme="light"] {
    --bg: #f5f5f7;
    --bg-elev: #ffffff;
    --bg-card: #ffffff;
    --bg-card-hover: #f0f0f0;
    --border: #e0e0e0;
    --border-soft: #ececec;
    --text: #1a1a1a;
    --text-muted: #555555;
    --text-faint: #999999;
    --accent: #0066cc;
    --accent-bg: #e3f2ff;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
    transition: background 0.3s, color 0.3s;
}

.profile-page {
    max-width: 480px;
    margin: 0 auto;
    padding-bottom: 60px;
}

/* Cover */
.cover-section {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
}

.cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cover-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

/* Profile Info */
.profile-info {
    text-align: center;
    padding: 20px 24px 10px;
    margin-top: -50px;
    position: relative;
}

.profile-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #0a0a0a;
    margin-bottom: 12px;
}

.profile-avatar-placeholder {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #222;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #555;
    border: 3px solid #0a0a0a;
    margin-bottom: 12px;
}

.profile-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.profile-bio {
    font-size: 14px;
    color: #aaa;
    line-height: 1.5;
    white-space: pre-line;
}

/* Links */
.links-section {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 20px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.link-button:hover {
    background: #252525;
    border-color: #444;
    transform: translateY(-1px);
}

.link-button i {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

/* Embeds */
.embeds-section {
    padding: 10px 24px;
}

.embed-block {
    margin-bottom: 20px;
}

.embed-title {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 8px;
    font-weight: 500;
}

.embed-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}

.embed-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* Text Blocks */
.text-section {
    padding: 10px 24px;
}

.text-block {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #ccc;
    line-height: 1.7;
}

/* Visit Counter */
.visit-counter {
    text-align: center;
    padding: 30px 24px 10px;
    font-size: 12px;
    color: #555;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
}

.footer-text {
    font-size: 11px;
    color: #333;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ─── Admin Styles ─── */

.admin-page {
    max-width: 720px;
    margin: 0 auto;
    padding: 30px 20px 60px;
}

.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 16px;
    border-bottom: 1px solid #222;
}

.admin-header h1 {
    font-size: 20px;
    font-weight: 700;
}

.admin-header a {
    color: #888;
    text-decoration: none;
    font-size: 13px;
}

.admin-header a:hover {
    color: #fff;
}

.admin-guide {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    background: #141414;
    border: 1px solid #282828;
    border-radius: 10px;
    padding: 18px 20px;
    margin-bottom: 20px;
}

.admin-guide strong {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
}

.admin-guide p {
    color: #9a9a9a;
    font-size: 13px;
    line-height: 1.6;
}

.admin-guide-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: flex-end;
    min-width: 150px;
}

.admin-guide-tags span {
    border: 1px solid #333;
    border-radius: 999px;
    color: #cfcfcf;
    font-size: 11px;
    padding: 5px 9px;
}

.admin-section {
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.admin-section h2 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-section h2 i {
    color: #888;
}

.section-help {
    color: #777;
    font-size: 13px;
    line-height: 1.6;
    margin: -6px 0 18px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 13px;
    color: #888;
    margin-bottom: 6px;
}

.form-group input[type="text"],
.form-group input[type="url"],
.form-group input[type="date"],
.form-group input[type="password"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 14px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #555;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

.form-group input[type="file"] {
    font-size: 13px;
    color: #888;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-primary {
    background: #fff;
    color: #000;
}

.btn-primary:hover {
    background: #ddd;
}

.btn-danger {
    background: #2a1515;
    color: #ff6b6b;
    border: 1px solid #3a2020;
}

.btn-danger:hover {
    background: #3a1515;
}

.btn-small {
    padding: 6px 12px;
    font-size: 12px;
}

.btn-ghost {
    background: transparent;
    color: #888;
    border: 1px solid #333;
}

.btn-ghost:hover {
    color: #fff;
    border-color: #555;
}

/* Admin item lists */
.admin-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    margin-bottom: 8px;
}

.admin-item.inactive {
    opacity: 0.4;
}

.admin-item-info {
    flex: 1;
    min-width: 0;
}

.admin-item-title {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-item-url {
    font-size: 12px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-item-actions {
    display: flex;
    gap: 6px;
    margin-left: 12px;
    flex-shrink: 0;
}

.admin-add-form {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #222;
}

.admin-add-form input {
    flex: 1;
    min-width: 120px;
    padding: 8px 12px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    font-size: 13px;
    outline: none;
}

.admin-add-form input:focus {
    border-color: #555;
}

.admin-stats {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.stat-card {
    flex: 1;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    padding: 16px;
    text-align: center;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: #666;
}

.flash-message {
    background: #1a2a1a;
    border: 1px solid #2a3a2a;
    color: #6f6;
    padding: 10px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 13px;
}

/* Login page */
.login-page {
    max-width: 360px;
    margin: 0 auto;
    padding: 100px 20px;
}

.login-page h1 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 30px;
}

.login-page .btn {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

/* Icon select helper */
.icon-preview {
    display: inline-block;
    width: 30px;
    text-align: center;
    font-size: 18px;
    color: #888;
}

/* Responsive */
@media (max-width: 520px) {
    .admin-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .admin-guide {
        flex-direction: column;
    }

    .admin-guide-tags {
        justify-content: flex-start;
    }

    .admin-page {
        padding: 16px 12px 60px;
    }

    .admin-section {
        padding: 16px;
    }

    .admin-add-form {
        flex-direction: column;
    }

    .admin-add-form input {
        min-width: 100%;
    }
}

/* Calendar */
.calendar-section {
    padding: 10px 24px 20px;
}

.section-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ddd;
}

.section-title i {
    color: #888;
}

#calendar-widget {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}

.cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    font-size: 15px;
    font-weight: 600;
}

.cal-nav {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 14px;
}

.cal-nav:hover {
    color: #fff;
    background: #2a2a2a;
}

.cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 11px;
    color: #666;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #2a2a2a;
}

.cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    text-align: center;
}

.cal-day {
    padding: 8px 4px;
    font-size: 13px;
    border-radius: 6px;
    color: #888;
}

.cal-day.empty {
    visibility: hidden;
}

.cal-day.today {
    background: #fff;
    color: #000;
    font-weight: 700;
}

.cal-day.has-event {
    background: #1a3a5c;
    color: #6cb8ff;
    font-weight: 600;
}

.cal-day.today.has-event {
    background: #6cb8ff;
    color: #000;
}

/* Event list */
.event-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    padding: 12px 16px;
}

.event-date-badge {
    font-size: 11px;
    color: #6cb8ff;
    background: #1a2a3a;
    padding: 4px 8px;
    border-radius: 6px;
    white-space: nowrap;
    flex-shrink: 0;
}

.event-info {
    flex: 1;
    min-width: 0;
}

.event-title {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-desc {
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}

.event-link {
    color: #888;
    text-decoration: none;
    font-size: 13px;
    flex-shrink: 0;
}

.event-link:hover {
    color: #6cb8ff;
}

/* Drag handle */
.drag-handle {
    cursor: grab;
    color: #444;
    padding: 4px;
    margin-right: 8px;
}

.drag-handle:hover {
    color: #888;
}

/* ─── Upgrade v2: Tabs, Listen Grid, Guestbook ─── */

/* Flash toast */
.flash-toast {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(40,80,40,0.95);
    color: #cfc;
    padding: 10px 18px;
    border-radius: 24px;
    font-size: 13px;
    z-index: 999;
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
    transition: opacity 0.5s ease;
}
.flash-toast.fade-out { opacity: 0; }

/* Tab nav */
.tab-nav {
    display: flex;
    justify-content: space-around;
    padding: 4px 16px;
    margin: 0 8px;
    background: #141414;
    border: 1px solid #222;
    border-radius: 14px;
    position: sticky;
    top: 8px;
    z-index: 50;
    backdrop-filter: blur(10px);
}
.tab-btn {
    flex: 1;
    background: none;
    border: none;
    color: #777;
    padding: 10px 4px;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    border-radius: 10px;
    transition: all 0.15s ease;
    font-family: inherit;
}
.tab-btn i { font-size: 16px; }
.tab-btn:hover { color: #ccc; }
.tab-btn.active {
    color: #fff;
    background: #2a2a2a;
}

/* Tab panel */
.tab-panel { display: none; padding: 20px 0 10px; }
.tab-panel.active { display: block; }

/* Section intro / big title */
.section-intro {
    padding: 14px 24px 4px;
}
.big-title {
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}
.big-title i { color: #6cb8ff; }
.muted { color: #888; font-size: 13px; }
.muted.center { text-align: center; padding: 32px 0; }

.section-block { padding: 4px 0; margin-top: 12px; }
.section-block .section-title {
    padding: 0 24px;
    margin-top: 12px;
}

/* Link variants */
.link-button.support {
    background: linear-gradient(135deg, #2a1a1a 0%, #1a1a1a 100%);
    border-color: #3a2222;
}
.link-button.support:hover { background: #321a1a; border-color: #4a2a2a; }
.link-button.contact {
    background: linear-gradient(135deg, #1a2030 0%, #1a1a1a 100%);
    border-color: #2a3040;
}
.link-button.contact:hover { background: #1a2538; border-color: #2a3a50; }

/* Listen grid (음원 카드) */
.listen-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 4px 24px 20px;
}
.listen-card {
    background: linear-gradient(160deg, #1d1d28 0%, #14141a 100%);
    border: 1px solid #2a2a36;
    border-radius: 14px;
    padding: 18px 16px;
    text-decoration: none;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 130px;
    transition: all 0.18s ease;
}
.listen-card:hover {
    transform: translateY(-2px);
    border-color: #6cb8ff;
    box-shadow: 0 6px 20px rgba(108,184,255,0.12);
}
.listen-icon {
    font-size: 28px;
    color: #6cb8ff;
}
.listen-title {
    font-size: 15px;
    font-weight: 600;
    flex: 1;
}
.listen-action {
    font-size: 11px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Event card (upgrade) */
.event-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 14px 16px;
    text-decoration: none;
    color: #fff;
    transition: all 0.15s ease;
    margin: 0 24px 8px;
}
.event-card:hover { background: #222; border-color: #3a3a3a; }
.event-card.upcoming { border-left: 3px solid #6cb8ff; }
.event-card.past { opacity: 0.65; border-left: 3px solid #555; }
.event-card .event-date {
    font-size: 12px;
    font-weight: 600;
    color: #6cb8ff;
    background: #1a2a3a;
    padding: 6px 10px;
    border-radius: 8px;
    white-space: nowrap;
    min-width: 90px;
    text-align: center;
}
.event-card.past .event-date { color: #aaa; background: #222; }
.event-card .event-info { flex: 1; min-width: 0; }
.event-card .event-title { font-size: 14px; font-weight: 600; }
.event-card .event-desc { font-size: 12px; color: #888; margin-top: 2px; }
.event-card > i { color: #555; font-size: 12px; }

/* Guestbook */
.gb-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 24px 16px;
}
.gb-form input,
.gb-form textarea {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    color: #fff;
    padding: 12px 14px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.15s ease;
    resize: vertical;
}
.gb-form input:focus,
.gb-form textarea:focus { border-color: #6cb8ff; }
.gb-form .btn-primary {
    background: #fff;
    color: #000;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.gb-form .btn-primary:hover { background: #ddd; }

.gb-list {
    padding: 0 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.gb-item {
    background: #161616;
    border: 1px solid #232323;
    border-radius: 12px;
    padding: 12px 14px;
}
.gb-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}
.gb-nick { font-size: 13px; font-weight: 600; color: #fff; }
.gb-time { font-size: 11px; color: #555; }
.gb-msg {
    font-size: 14px;
    color: #ccc;
    line-height: 1.5;
    white-space: pre-wrap;
    word-break: break-word;
}

/* Category badge (admin) */
.cat-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
    vertical-align: middle;
}
.cat-main    { background: #1a2a3a; color: #6cb8ff; }
.cat-listen  { background: #2a1a3a; color: #c08bff; }
.cat-support { background: #3a1a1a; color: #ff8b8b; }
.cat-contact { background: #1a3a2a; color: #8bff8b; }

.section-help {
    font-size: 12px;
    color: #777;
    line-height: 1.5;
    margin-bottom: 12px;
    margin-top: -8px;
}

/* Admin add form select */
.admin-add-form select {
    padding: 8px 10px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    font-size: 13px;
    outline: none;
}

/* Calendar widget (public + admin) */
.calendar-widget {
    background: #141414;
    border: 1px solid #222;
    border-radius: 14px;
    padding: 16px;
    margin: 14px 24px 20px;
}
.calendar-widget .cal-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 12px; font-size: 15px; font-weight: 600;
}
.calendar-widget .cal-month { color: #fff; }
.calendar-widget .cal-nav {
    background: #222; border: none; color: #ccc;
    padding: 6px 12px; border-radius: 8px; cursor: pointer; font-size: 12px;
}
.calendar-widget .cal-nav:hover { background: #333; color: #fff; }
.calendar-widget .cal-weekdays {
    display: grid; grid-template-columns: repeat(7, 1fr);
    text-align: center; font-size: 11px; color: #666;
    padding-bottom: 8px; margin-bottom: 8px;
    border-bottom: 1px solid #222;
}
.calendar-widget .cal-days {
    display: grid; grid-template-columns: repeat(7, 1fr);
    gap: 4px; text-align: center;
}
.calendar-widget .cal-day {
    padding: 10px 4px; font-size: 13px;
    border-radius: 8px; color: #aaa;
    cursor: pointer; position: relative;
    transition: background 0.15s;
}
.calendar-widget .cal-day:hover { background: #222; }
.calendar-widget .cal-day.empty { visibility: hidden; cursor: default; }
.calendar-widget .cal-day.today {
    background: #fff; color: #000; font-weight: 700;
}
.calendar-widget .cal-day.has-event {
    background: #1a3a5c; color: #6cb8ff; font-weight: 600;
}
.calendar-widget .cal-day.today.has-event {
    background: #6cb8ff; color: #000;
}
.calendar-widget .cal-day.selected {
    outline: 2px solid #6cb8ff;
    outline-offset: -2px;
    transform: scale(1.05);
}
.calendar-widget .cal-dot {
    position: absolute; bottom: 4px; left: 50%;
    transform: translateX(-50%);
    width: 4px; height: 4px; border-radius: 50%; background: currentColor;
}
.calendar-widget .cal-day-events {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #222;
}

/* Photo grid (공개) */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 4px 24px 20px;
}
.photo-tile {
    position: relative;
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    background: #111;
    border: 1px solid #222;
    text-decoration: none;
    color: #fff;
    display: block;
}
.photo-tile img,
.photo-tile video {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.photo-cap {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: #fff; font-size: 11px;
    padding: 16px 8px 6px;
    text-align: left;
}

/* News card with comments */
.news-card {
    background: #161616;
    border: 1px solid #232323;
    border-radius: 12px;
    padding: 16px;
    margin: 0 24px 12px;
}
.news-body {
    font-size: 14px; color: #ddd; line-height: 1.7;
    margin-bottom: 8px;
}
.news-meta { font-size: 11px; color: #555; margin-bottom: 8px; }
.news-comments-toggle {
    border-top: 1px solid #222;
    padding-top: 10px;
    font-size: 12px;
    color: #888;
}
.news-comments-toggle summary {
    cursor: pointer;
    list-style: none;
    display: flex; align-items: center; gap: 6px;
    user-select: none;
}
.news-comments-toggle summary::-webkit-details-marker { display: none; }
.news-comments-toggle summary:hover { color: #fff; }
.news-comments { margin-top: 10px; }
.news-comment {
    padding: 8px 0;
    border-top: 1px solid #1f1f1f;
    font-size: 12px;
}
.news-comment-head {
    display: flex; justify-content: space-between;
    margin-bottom: 4px;
}
.news-comment-head strong { color: #fff; font-size: 12px; }
.news-comment-head span { color: #555; font-size: 10px; }
.news-comment-msg { color: #bbb; }
.news-comment-form {
    display: flex; gap: 6px; margin-top: 12px;
    padding-top: 10px; border-top: 1px solid #222;
}
.news-comment-form input[type="text"] {
    background: #111; border: 1px solid #2a2a2a; border-radius: 6px;
    padding: 8px 10px; color: #fff; font-size: 12px;
    outline: none; flex: 1; font-family: inherit;
}
.news-comment-form input[name="nickname"] { max-width: 100px; }
.news-comment-form input:focus { border-color: #6cb8ff; }
.news-comment-form button {
    background: #fff; color: #000; border: none;
    padding: 8px 12px; border-radius: 6px;
    cursor: pointer; font-size: 12px;
}

/* User upload form */
.upload-form {
    display: flex; flex-direction: column; gap: 10px;
    padding: 0 24px 16px;
}
.upload-form input[type="text"],
.upload-form .file-input-label {
    background: #1a1a1a; border: 1px solid #2a2a2a;
    border-radius: 10px; padding: 12px 14px;
    color: #fff; font-size: 14px; outline: none;
    font-family: inherit;
}
.upload-form input:focus { border-color: #6cb8ff; }
.upload-form .file-input-label {
    cursor: pointer; display: flex; align-items: center; gap: 8px;
    color: #aaa; transition: border-color 0.15s;
}
.upload-form .file-input-label:hover { border-color: #6cb8ff; color: #fff; }
.upload-form .file-input-label input[type="file"] {
    display: none;
}
.upload-form .btn-primary {
    background: #fff; color: #000; border: none;
    padding: 12px; border-radius: 10px;
    font-size: 14px; font-weight: 600;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 6px;
}
.upload-form .btn-primary:hover { background: #ddd; }

.upload-divider {
    text-align: center;
    color: var(--text-faint);
    font-size: 11px;
    margin: 4px 0;
    position: relative;
}
.upload-divider::before,
.upload-divider::after {
    content: '';
    position: absolute; top: 50%;
    width: 40%; height: 1px;
    background: var(--border);
}
.upload-divider::before { left: 0; }
.upload-divider::after { right: 0; }

.photo-tile.is-youtube { aspect-ratio: 16/9; }
.photo-tile iframe { width: 100%; height: 100%; border: 0; }

/* ─── 소셜 빠른 링크 (인스타/유튜브/이메일/카톡 등) ─── */
.social-quick-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 4px 16px 16px;
    flex-wrap: wrap;
}
.social-icon-btn {
    position: relative;
    width: 46px; height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.2s ease;
    background: var(--bg-card);
    border: 1px solid var(--border);
}
.social-icon-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* 플랫폼별 색상 */
.social-icon-btn[data-platform="instagram"] {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
}
.social-icon-btn[data-platform="youtube"]   { background: #ff0000; border-color: transparent; }
.social-icon-btn[data-platform="tiktok"]    { background: #000; border-color: #fff; }
.social-icon-btn[data-platform="twitter"]   { background: #1da1f2; border-color: transparent; }
.social-icon-btn[data-platform="facebook"]  { background: #1877f2; border-color: transparent; }
.social-icon-btn[data-platform="email"]     { background: #ea4335; border-color: transparent; }
.social-icon-btn[data-platform="kakao"]     { background: #fee500; color: #000; border-color: transparent; }
.social-icon-btn[data-platform="discord"]   { background: #5865f2; border-color: transparent; }
.social-icon-btn[data-platform="spotify"]   { background: #1db954; border-color: transparent; }
.social-icon-btn[data-platform="soundcloud"]{ background: #ff5500; border-color: transparent; }
.social-icon-btn[data-platform="phone"]     { background: #34a853; border-color: transparent; }

.social-tooltip {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.85);
    color: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 10px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s, bottom 0.2s;
}
.social-icon-btn:hover .social-tooltip {
    opacity: 1;
    bottom: -32px;
}

/* ─── 데스크탑 레이아웃 ─── */

/* 태블릿 이상 (≥ 768px): max-width 늘리고 그리드 풍성하게 */
@media (min-width: 768px) {
    .profile-page {
        max-width: 720px !important;
        padding-bottom: 80px;
    }
    .cover-section { height: 360px; border-radius: 0 0 24px 24px; overflow: hidden; }
    .profile-info { padding-top: 30px; }
    .photo-grid { grid-template-columns: repeat(3, 1fr); }
    .listen-grid { grid-template-columns: repeat(3, 1fr); }
    .members-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
    .insta-posts-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .tab-nav { font-size: 13px; }
    .tab-btn span { display: inline !important; }
    .tab-btn i { font-size: 14px; }
    .tab-btn { padding: 10px 6px; }
    .social-icon-btn { width: 52px; height: 52px; font-size: 22px; }
}

/* 데스크탑 (≥ 1100px): 2-column 레이아웃 (사이드바 + 메인) */
@media (min-width: 1100px) {
    body {
        background: var(--bg);
    }
    .profile-page {
        max-width: 1200px !important;
        display: grid;
        grid-template-columns: 360px 1fr;
        gap: 32px;
        padding: 0 24px 60px;
        align-items: start;
    }
    /* 좌측 사이드바: 프로필 + 탭 nav 고정 */
    .cover-section {
        grid-column: 1 / -1;
        height: 280px;
        margin: 0 -24px 0;
        border-radius: 0 0 32px 32px;
    }
    .profile-info {
        grid-column: 1;
        margin-top: -60px;
        position: sticky;
        top: 16px;
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 32px 20px 20px;
        align-self: start;
    }
    .profile-avatar, .profile-avatar-placeholder {
        width: 120px; height: 120px;
        margin-bottom: 16px;
        border-color: var(--bg-card);
    }
    .profile-name { font-size: 24px; }
    .social-quick-links {
        grid-column: 1;
        margin-top: -8px;
        padding: 0 16px;
        position: sticky;
        top: 360px;
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-top: none;
        border-radius: 0 0 20px 20px;
        margin-bottom: 16px;
    }
    /* 사이드바에 탭 nav 세로 배치 */
    .tab-nav {
        grid-column: 1;
        flex-direction: column;
        padding: 12px;
        gap: 4px;
        position: sticky;
        top: 460px;
        background: var(--bg-card);
        border-radius: 16px;
    }
    .tab-btn {
        flex-direction: row !important;
        justify-content: flex-start;
        gap: 12px;
        padding: 12px 16px !important;
        font-size: 14px;
        width: 100%;
        text-align: left;
    }
    .tab-btn i { font-size: 16px; width: 20px; text-align: center; }
    .tab-btn span { display: inline !important; }
    /* 우측 메인 콘텐츠 영역 */
    .tab-panel {
        grid-column: 2;
        grid-row: 2 / span 100;
        padding-top: 0;
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 24px;
        min-height: 500px;
    }
    .tab-panel.active {
        display: block;
    }
    .links-section,
    .embeds-section,
    .photo-grid,
    .listen-grid,
    .members-grid,
    .upload-form,
    .gb-form,
    .gb-list,
    .songs-list,
    .song-chart,
    .insta-posts-grid {
        padding-left: 0;
        padding-right: 0;
    }
    .news-card,
    .event-card { margin-left: 0; margin-right: 0; }
    .section-intro { padding-left: 0; padding-right: 0; }
    .visit-counter,
    .footer {
        grid-column: 1 / -1;
        margin-top: 24px;
    }
    /* 사진/음원 더 많은 컬럼 */
    .photo-grid { grid-template-columns: repeat(4, 1fr); }
    .listen-grid { grid-template-columns: repeat(3, 1fr); }
    .insta-posts-grid { grid-template-columns: repeat(2, 1fr); }
    /* 곡 카드 좀 더 넓게 */
    .song-card { padding: 18px; }
    .song-cover { width: 100px; height: 100px; }
}

/* 데스크탑 큰 화면 (≥ 1440px): 더 넓게 */
@media (min-width: 1440px) {
    .profile-page { max-width: 1320px !important; gap: 40px; grid-template-columns: 380px 1fr; }
    .photo-grid { grid-template-columns: repeat(5, 1fr); }
}

/* Instagram embed wrapper */
.insta-embed {
    padding: 0 24px;
}
.insta-embed iframe,
.insta-embed .lightwidget-widget {
    width: 100% !important;
    border: none;
    border-radius: 12px;
}

/* Instagram 게시물 그리드 */
.insta-posts-grid {
    padding: 0 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}
.insta-posts-grid blockquote.instagram-media {
    width: 100% !important;
    max-width: 540px !important;
    margin: 0 auto !important;
}

.insta-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff !important;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.2s;
}
.insta-follow-btn:hover { transform: scale(1.05); }

/* Admin photo grid */
.admin-photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 8px;
    margin-top: 12px;
}
.admin-photo-tile {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    background: #111;
    border: 1px solid #2a2a2a;
}
.admin-photo-tile img {
    width: 100%; height: 100%; object-fit: cover;
}
.admin-photo-cap {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: rgba(0,0,0,0.7); color: #fff;
    padding: 4px 6px; font-size: 10px;
}
.admin-photo-del {
    position: absolute; top: 4px; right: 4px;
}
.admin-photo-del button {
    background: rgba(220,30,30,0.8); color: #fff;
    border: none; border-radius: 6px;
    width: 28px; height: 28px; cursor: pointer;
    font-size: 11px;
}

/* Mobile tweaks */
@media (max-width: 520px) {
    .listen-grid { gap: 10px; padding: 4px 16px 20px; }
    .listen-card { min-height: 110px; padding: 14px 12px; }
    .listen-icon { font-size: 24px; }
    .event-card { margin: 0 16px 8px; }
    .section-intro { padding: 14px 16px 4px; }
    .gb-form, .gb-list { padding-left: 16px; padding-right: 16px; }
    .links-section { padding: 16px; }
    .embeds-section { padding: 6px 16px; }
    .calendar-widget { margin: 14px 16px 20px; padding: 12px; }
    .calendar-widget .cal-day { padding: 8px 2px; font-size: 12px; }
    .photo-grid, .upload-form { padding-left: 16px; padding-right: 16px; }
    .news-card { margin: 0 16px 12px; }
    .insta-embed { padding: 0 16px; }
    .tab-btn span { display: none; }
    .tab-btn i { font-size: 18px; }
    .tab-btn { padding: 12px 4px; }
}

/* ─── 상단 컨트롤 (테마/언어) ─── */
.top-controls {
    position: fixed;
    top: 12px; right: 12px;
    z-index: 200;
    display: flex; gap: 8px;
}
.ctrl-btn {
    background: rgba(20,20,20,0.85);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 12px;
    backdrop-filter: blur(10px);
    display: inline-flex; align-items: center; gap: 6px;
    transition: all 0.2s;
}
:root[data-theme="light"] .ctrl-btn { background: rgba(255,255,255,0.85); }
.ctrl-btn:hover { background: var(--bg-card-hover); }

.lang-dropdown { position: relative; }
.lang-menu {
    position: absolute;
    top: 100%; right: 0;
    margin-top: 6px;
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    display: none;
    min-width: 80px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.lang-menu.open { display: block; }
.lang-menu a {
    display: block;
    padding: 8px 12px;
    color: var(--text);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
}
.lang-menu a:hover { background: var(--bg-card-hover); color: var(--accent); }

/* ─── 구독 카드 ─── */
.subscribe-card {
    margin: 16px 24px;
    padding: 16px 18px;
    background: linear-gradient(135deg, rgba(108,184,255,0.08), rgba(192,139,255,0.08));
    border: 1px solid var(--border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.subscribe-icon {
    width: 44px; height: 44px;
    background: var(--accent-bg);
    color: var(--accent);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
}
.subscribe-title { font-size: 14px; font-weight: 700; color: var(--text); }
.subscribe-desc { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.subscribe-form {
    display: flex; gap: 6px; width: 100%; margin-top: 6px;
}
.subscribe-form input {
    flex: 1;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 8px; padding: 10px 12px;
    color: var(--text); font-size: 13px; outline: none;
    font-family: inherit;
}
.subscribe-form input:focus { border-color: var(--accent); }
.subscribe-form button {
    background: var(--accent); color: white;
    border: none; border-radius: 8px; padding: 10px 16px;
    cursor: pointer; font-size: 12px; font-weight: 600;
    white-space: nowrap;
}

/* ─── 곡 카드 ─── */
.songs-list {
    padding: 0 24px 20px;
    display: flex; flex-direction: column; gap: 12px;
}
.song-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px;
    display: flex; gap: 14px;
}
.song-cover {
    width: 80px; height: 80px;
    border-radius: 10px; overflow: hidden;
    background: var(--bg-card-hover);
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-faint); font-size: 24px;
}
.song-cover img { width: 100%; height: 100%; object-fit: cover; }
.song-info { flex: 1; min-width: 0; }
.song-title { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.song-artist { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.song-audio { width: 100%; height: 32px; margin-bottom: 8px; }
.song-actions { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.lyrics-btn {
    background: var(--bg-card-hover); color: var(--text);
    border: 1px solid var(--border); border-radius: 6px;
    padding: 6px 12px; font-size: 11px; cursor: pointer;
    display: inline-flex; align-items: center; gap: 4px;
}
.lyrics-btn:hover { background: var(--accent-bg); color: var(--accent); }

/* 가사 모달 */
.lyrics-modal {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 1000;
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
}
.lyrics-modal[hidden] { display: none; }
.lyrics-inner {
    background: var(--bg-elev);
    border-radius: 16px;
    padding: 24px;
    max-width: 500px; width: 100%;
    max-height: 80vh; overflow-y: auto;
    position: relative;
    border: 1px solid var(--border);
}
.lyrics-close {
    position: absolute; top: 12px; right: 12px;
    background: var(--bg-card-hover); border: none;
    width: 32px; height: 32px; border-radius: 50%;
    color: var(--text); cursor: pointer;
}
.lyrics-inner h3 { font-size: 16px; margin-bottom: 14px; color: var(--text); }
.lyrics-body {
    font-family: inherit; font-size: 14px; line-height: 1.8;
    color: var(--text-muted); white-space: pre-wrap;
    background: var(--bg-card); padding: 16px;
    border-radius: 10px; border: 1px solid var(--border);
}

/* ─── 이모지 반응 ─── */
.reactions {
    display: flex; gap: 6px; margin-top: 10px;
    padding-top: 10px; border-top: 1px solid var(--border-soft);
}
.reactions-mini {
    border-top: none; padding-top: 0;
    margin-top: 4px;
}
.reactions button {
    background: var(--bg-card); border: 1px solid var(--border);
    color: var(--text); border-radius: 16px;
    padding: 4px 10px; font-size: 13px;
    cursor: pointer;
    transition: all 0.15s ease;
    display: inline-flex; align-items: center; gap: 4px;
}
.reactions button:hover { background: var(--bg-card-hover); transform: scale(1.05); }
.reactions button.reacted { background: var(--accent-bg); border-color: var(--accent); }
.reactions button.pulse { animation: rxnPulse 0.4s ease; }
.rxn-cnt { font-size: 11px; color: var(--text-muted); font-weight: 600; }

@keyframes rxnPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

.photo-tile-wrap { display: flex; flex-direction: column; gap: 4px; }
.photo-tile-wrap .reactions-mini { padding: 0 4px; }

/* 주요 링크에 YouTube가 들어가면 인라인 임베드로 표시 */
.inline-yt {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 4px;
}
.inline-yt-title {
    font-size: 13px; color: var(--text);
    padding: 4px 6px 8px;
    display: flex; align-items: center; gap: 6px;
    font-weight: 500;
}
.inline-yt .embed-wrapper {
    position: relative; padding-bottom: 56.25%; height: 0;
    overflow: hidden; border-radius: 8px;
}
.inline-yt iframe {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    border-radius: 8px;
}

/* ─── 라이트 테마 보정 (기존 컴포넌트들) ─── */
:root[data-theme="light"] .profile-bio,
:root[data-theme="light"] .profile-avatar-placeholder { color: var(--text-muted); }
:root[data-theme="light"] .cover-placeholder {
    background: linear-gradient(135deg, #e0e0ff 0%, #f0f0ff 50%, #fafafa 100%);
}
:root[data-theme="light"] .link-button,
:root[data-theme="light"] .listen-card,
:root[data-theme="light"] .event-card,
:root[data-theme="light"] .news-card,
:root[data-theme="light"] .gb-item,
:root[data-theme="light"] .photo-tile,
:root[data-theme="light"] .text-block,
:root[data-theme="light"] .calendar-widget {
    background: var(--bg-card); color: var(--text); border-color: var(--border);
}
:root[data-theme="light"] .tab-nav {
    background: var(--bg-elev); border-color: var(--border);
}
:root[data-theme="light"] .tab-btn { color: var(--text-faint); }
:root[data-theme="light"] .tab-btn.active { background: var(--bg-card-hover); color: var(--text); }
:root[data-theme="light"] .gb-form input,
:root[data-theme="light"] .gb-form textarea,
:root[data-theme="light"] .upload-form input,
:root[data-theme="light"] .upload-form .file-input-label,
:root[data-theme="light"] .news-comment-form input {
    background: var(--bg-card); color: var(--text); border-color: var(--border);
}
:root[data-theme="light"] .visit-counter,
:root[data-theme="light"] .footer-text { color: var(--text-faint); }
:root[data-theme="light"] .profile-avatar,
:root[data-theme="light"] .profile-avatar-placeholder { border-color: var(--bg); }
:root[data-theme="light"] .ctrl-btn {
    background: rgba(255,255,255,0.9); color: var(--text);
}

/* ─── 공유 버튼 ─── */
.share-row {
    display: flex; gap: 8px;
    padding: 10px 24px 0;
    flex-wrap: wrap;
}
.share-btn {
    background: var(--bg-card); color: var(--text);
    border: 1px solid var(--border); border-radius: 16px;
    padding: 8px 14px; font-size: 12px;
    cursor: pointer; text-decoration: none;
    display: inline-flex; align-items: center; gap: 6px;
    transition: all 0.15s;
    font-family: inherit;
}
.share-btn:hover { background: var(--accent-bg); color: var(--accent); border-color: var(--accent); }
.share-btn[data-share="kakao"] { background: #FEE500; color: #000; border-color: #FEE500; }
.share-btn[data-share="kakao"]:hover { background: #FFE000; }

/* ─── 멤버 카드 ─── */
.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
    padding: 0 24px 20px;
}
.member-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 12px;
    text-align: center;
    transition: transform 0.2s;
}
.member-card:hover { transform: translateY(-3px); }
.member-photo {
    width: 80px; height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 10px;
    background: var(--bg-card-hover);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-faint); font-size: 28px;
    border: 2px solid var(--border);
}
.member-photo img { width: 100%; height: 100%; object-fit: cover; }
.member-name { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.member-role { font-size: 11px; color: var(--accent); margin-bottom: 6px; }
.member-bio { font-size: 11px; color: var(--text-muted); line-height: 1.5; min-height: 30px; }
.member-sns {
    display: inline-block;
    margin-top: 8px;
    font-size: 11px;
    color: var(--accent);
    text-decoration: none;
}

/* ─── 곡 차트 ─── */
.song-chart {
    padding: 0 24px 16px;
    display: flex; flex-direction: column; gap: 6px;
}
.chart-item {
    display: flex; align-items: center; gap: 12px;
    background: linear-gradient(90deg, var(--accent-bg), var(--bg-card));
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 8px 12px;
    text-decoration: none;
    color: var(--text);
    transition: transform 0.15s;
}
.chart-item:hover { transform: translateX(4px); }
.chart-rank {
    font-size: 18px; font-weight: 800;
    color: var(--accent);
    min-width: 24px; text-align: center;
}
.chart-item img,
.chart-cover-placeholder {
    width: 40px; height: 40px;
    border-radius: 6px;
    object-fit: cover;
    background: var(--bg-card-hover);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-faint);
}
.chart-info { flex: 1; min-width: 0; }
.chart-title { font-size: 13px; font-weight: 600; }
.chart-meta { font-size: 11px; color: var(--text-muted); }

.song-card.highlight {
    animation: songHighlight 1.5s ease;
}
@keyframes songHighlight {
    0%, 100% { box-shadow: 0 0 0 rgba(108,184,255,0); }
    50% { box-shadow: 0 0 20px rgba(108,184,255,0.5); }
}

/* ─── 셋리스트 ─── */
.setlist-toggle {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--border-soft);
    font-size: 11px;
    color: var(--text-muted);
}
.setlist-toggle summary {
    cursor: pointer; list-style: none;
    display: flex; align-items: center; gap: 6px;
}
.setlist-toggle summary::-webkit-details-marker { display: none; }
.setlist-list {
    margin: 8px 0 0 24px;
    font-size: 12px; color: var(--text);
    line-height: 1.7;
}

/* ─── 시즌 테마 ─── */
html[data-season="spring"] .profile-name::after {
    content: ' 🌸'; opacity: 0.8;
}
html[data-season="summer"] .profile-name::after {
    content: ' 🌊'; opacity: 0.8;
}
html[data-season="autumn"] .profile-name::after {
    content: ' 🍁'; opacity: 0.8;
}
html[data-season="winter"] .profile-name::after {
    content: ' ❄️'; opacity: 0.8;
}
html[data-season="halloween"] .profile-name::after {
    content: ' 🎃'; opacity: 0.8;
}

/* 시즌별 배경 액센트 */
html[data-season="spring"]:root[data-theme="dark"] .cover-placeholder {
    background: linear-gradient(135deg, #2a1a3e, #1a2030, #3e1a2a);
}
html[data-season="winter"]:root[data-theme="dark"] .cover-placeholder {
    background: linear-gradient(135deg, #1a3e3e, #1a1a3e, #2a1a2a);
}


