@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;700&display=swap');

:root {
    /* 白天 */
	--白天背景:	#f5e4c4;
	--白天背景亮:	#fff5de;
	--白天背景暗:	#ceb384;
	--白天文字1:	#333333;
	--白天文字2:	#666666;
	--白天文字3:	#999999;
	--白天按钮:	#ceb384;
	--白天按钮亮:	#ffe3a6;
	--白天按钮暗:	#866c50;
    /* 夜晚 */
	--夜晚背景:	#272b2d;
	--夜晚背景亮:	#3b4244;
	--夜晚背景暗:	#0f1011;
	--夜晚文字1:	#fefefe;
	--夜晚文字2:	#cccccc;
	--夜晚文字3:	#999999;
	--夜晚按钮:	#2a2113;
	--夜晚按钮亮:	#3c2d17;
	--夜晚按钮暗:	#1c170d;
    /* 其它 */
    --guose: #ff9e18;
    --yese: #4A9462;
    --jinse: #ffd600;
    --shuise: #afe2e3;
    --tianlan: #8dc6e8;
    --bg-deep: #2C2C2C;
    --bg-surface: #3A3A3A;
    --bg-highlight: #4A4A4A;
    --light-glow: rgba(255, 255, 255, 0.15);
    --dark-shadow: rgba(0, 0, 0, 0.3);
    --chat-bg: #2a2a2a;
    --chat-header: #1f1f1f;
    --black-75: rgba(0, 0, 0, 0.75);
    --black-25: rgba(0, 0, 0, 0.25);
    --black-10: rgba(0, 0, 0, 0.10);
}

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

body {
    font-family: "Noto Sans SC", sans-serif;
    background-color: var(--白天背景);
    color: var(--白天文字1);
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    cursor: default;
}

/* ----- 顶部标识栏 ----- */
.top-bar {
    display: flex;
    align-items: center;
    padding: 0.5rem 1.5rem;
    background: var(--夜晚背景);
    box-shadow: 0 4px 10px var(--dark-shadow), inset 0 1px 0 var(--light-glow);
    color: var(--夜晚文字2);
    gap: 0.5rem;
    z-index: 10;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    margin-right: auto;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    text-decoration: none;
    color: inherit;
    font-weight: 500;
    padding: 0.2rem 0.5rem;
    border-radius: 0.5rem;
    transition: background 0.2s;
}

.logo-link:hover {
    background-color: var(--夜晚背景亮);
    color: var(--夜晚文字1);
}

.logo-icon {
    height: 2rem;
    width: auto;
    display: block;
    border-radius: 4px;
}

.logo-text {
    color: var(--夜晚文字1);
    font-size: 1.0rem;
}

/* 面包屑导航 */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.6rem;
    border-radius: 30px;
    color: var(--夜晚文字2);
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
}

.breadcrumb-item:hover {
    background: var(--夜晚背景亮);
    color: var(--夜晚文字1);
}

.breadcrumb-separator {
    color: rgba(255,255,255,0.5);
    margin: 0 0.2rem;
    font-size: 1rem;
}

.breadcrumb-current {
    font-weight: 500;
    color: var(--夜晚文字1);
    padding: 0.2rem 0.6rem;
}

/* 语言切换按钮 */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
    padding: 0.2rem 0.5rem;
    border-radius: 2rem;
    transition: all 0.2s;
    margin-left: auto;
    color: #fff;
    position: relative;
}

.lang-switcher:hover {
    background-color: var(--夜晚背景亮);
    box-shadow: 0 0 10px var(--light-glow), inset 0 1px 2px white;
}

/* 语言下拉菜单 */
.lang-dropdown {
    position: absolute;
    top: 60px;
    right: 1.5rem;
    background: var(--夜晚背景暗);
    border-radius: 20px;
    box-shadow: 0 10px 20px var(--dark-shadow), inset 0 1px 2px var(--light-glow);
    padding: 0.5rem 0;
    min-width: 120px;
    display: none;
    z-index: 100;
    border: 1px solid rgba(255,255,255,0.1);
}

.lang-dropdown.show {
    display: block;
}

.lang-option {
    display: block;
    padding: 0.5rem 1.2rem;
    color: var(--夜晚文字2);
    text-decoration: none;
    transition: background 0.2s;
    font-size: 0.95rem;
    cursor: pointer;
}

.lang-option:hover {
    background: var(--夜晚背景亮);
    color: var(--夜晚文字1);
	border-radius: 10px;
}

/* 按压效果（点击时无位移） */
.press-effect:active {
    transform: none !important;
    box-shadow: none !important;
}

/* ----- 主内容区域 ----- */
.main-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--夜晚文字2);
    background: var(--白天背景); 
}

.main-content::-webkit-scrollbar {
    width: 8px;
}
.main-content::-webkit-scrollbar-track {
    background: var(--夜晚背景暗);
    border-radius: 4px;
    box-shadow: inset 0 0 3px var(--dark-shadow);
}
.main-content::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
    box-shadow: inset 0 1px 2px var(--light-glow), 0 2px 3px var(--dark-shadow);
}
.main-content::-webkit-scrollbar-thumb:hover {
    background: var(--夜晚文字1);
}

/* ----- 全屏场景 ----- */
.scene-section.fullscreen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    margin-bottom: 2rem;
}

.scene-backdrop {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scene-layout {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.avatar-container {
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.avatar-img {
    max-width: 100%;
    max-height: 70vh;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}

.scene-content {
    flex: 1 1 50%;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 60px;
    box-shadow: 0 20px 30px var(--dark-shadow);
    color: #fff;
    text-align: left;
    backdrop-filter: blur(5px);
}

.latest-label {
    display: block;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--jinmuse);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #fff;
    text-shadow: 0 4px 8px var(--dark-shadow);
}

.featured-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #fff;
    opacity: 0.9;
}

/* 查看详情按钮 */
.btn-detail {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    background: var(--白天按钮);
    color: var(--白天文字1);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 8px var(--dark-shadow);
	text-decoration: none; /* 去除下划线 */
}

.btn-detail:hover,
.btn-detail:active {
    background: var(--白天按钮亮);
    color: var(--白天文字1);
    transform: translateY(-2px);
    box-shadow: 0 8px 12px var(--dark-shadow);
	text-decoration: none; /* 悬停时也确保无下划线 */
}

/* 响应式竖屏 */
@media (max-width: 768px) {
    .scene-layout {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    .avatar-container, .scene-content {
        flex: 1 1 auto;
        width: 100%;
    }
    .avatar-img {
        max-height: 40vh;
    }
    .scene-content {
        text-align: center;
    }
    .featured-title {
        font-size: 2rem;
    }
    .featured-desc {
        font-size: 1rem;
    }
}

/* ----- 卡片网格区 ----- */
.cards-section {
    padding: 2rem 1rem 4rem;
    background: transparent;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    color: #ceb384;
    text-shadow: 0 2px 5px var(--dark-shadow);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: var(--白天背景);
    border-radius: 30px;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: 0 15px 20px var(--dark-shadow), inset 0 1px 3px var(--light-glow);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--白天文字2);
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.card:hover {
    background: var(--白天背景亮);
    transform: translateY(-5px);
    box-shadow: 0 25px 30px var(--dark-shadow), inset 0 2px 5px white;
}

.card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1rem;
    background: var(--白天背景暗);
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 0;
    color: var(--白天文字2);
}

/* ----- 底部功能栏 ----- */
.bottom-bar {
    width: 100%;
    background: var(--夜晚背景);
    box-shadow: 0 -4px 10px var(--dark-shadow), inset 0 1px 0 var(--light-glow);
    padding: 0.3rem 0;
    position: sticky;
    bottom: 0;
    left: 0;
    z-index: 20;
    border-top: 1px solid rgba(0,0,0,0.2);
}

.bottom-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    gap: 0.5rem;
}

.control-item {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.4rem 0.8rem;
    border-radius: 40px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--夜晚文字2);
    background: transparent;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.control-item:hover {
    background: var(--夜晚背景亮);
    color: var(--夜晚文字1);
    box-shadow: 0 4px 8px var(--dark-shadow), inset 0 1px 3px white;
}

.control-item:active {
    transform: none !important;
    box-shadow: none !important;
}

.sound-toggle.sound-on {
    color: var(--夜晚文字3);
    background: rgba(175, 226, 227, 0.2);
}

/* 窄屏隐藏文字 */
@media (max-width: 768px) {
    .control-item .text {
        display: none;
    }
    .control-item {
        padding: 0.4rem;
    }
    .breadcrumb-item, .breadcrumb-current {
        font-size: 0.9rem;
        padding: 0.1rem 0.4rem;
    }
}

@media (max-width: 480px) {
    .control-item {
        padding: 0.3rem;
    }
}

/* ----- 聊天窗口组件 ----- */
.chat-widget {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    max-width: 90vw;
    background: var(--夜晚背景);
    border-radius: 30px;
    box-shadow: 0 20px 40px var(--dark-shadow);
    display: none;
    flex-direction: column;
    z-index: 1000;
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
}

.chat-widget.show {
    display: flex;
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--夜晚背景暗);
    border-radius: 30px 30px 0 0;
    font-weight: 500;
}

.chat-feedback {
    background: var(--夜晚按钮);
    border: none;
    color: var(--夜晚文字1);
    padding: 0.2rem 0.8rem;
    border-radius: 30px;
    margin-left: auto;
    margin-right: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.chat-feedback:hover {
    background: var(--夜晚按钮亮);
}

.chat-close {
    background: none;
    border: none;
    color: var(--夜晚文字2);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0 0.5rem;
}

.chat-close:hover {
    color: var(--夜晚文字1);
}

.chat-messages {
    padding: 1rem 1.5rem;
    min-height: 300px;
    max-height: 400px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.chat-message {
    padding: 0.6rem 1rem;
    border-radius: 20px;
    max-width: 80%;
    word-wrap: break-word;
    line-height: 1.4;
}

.chat-message.bot {
    background: var(--夜晚背景亮);
    align-self: flex-start;
    border-bottom-left-radius: 5px;
}

.chat-message.user {
    background: var(--夜晚按钮);
    color: var(--夜晚文字2);
    align-self: flex-end;
    border-bottom-right-radius: 5px;
}

.chat-faq {
    padding: 0.5rem 1.5rem 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.faq-title {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.5rem;
}



.faq-btn {
    background: var(--夜晚按钮);
    border: none;
    color: var(--夜晚文字2);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    margin: 0.2rem;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.faq-btn:hover {
    background: var(--夜晚按钮亮);
    color: var(--夜晚文字1);
}

.chat-input-area {
    display: flex;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.chat-input {
    flex: 1;
    background: var(--夜晚背景亮);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    padding: 0.6rem 1rem;
    color: var(--夜晚文字1);
    font-family: inherit;
    resize: none;
    min-height: 40px;
    max-height: 120px;
    overflow-y: auto;
}

.chat-input:focus {
    outline: none;
    border-color: var(--夜晚按钮);
}

.chat-send {
    background: var(--夜晚按钮);
    border: none;
    color: var(--夜晚文字1);
    padding: 0 1.2rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s;
}

.chat-send:hover {
    background: var(--夜晚按钮亮);
    color: var(--夜晚文字1);
}

/* ----- 反馈表单 ----- */
.feedback-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    display: none;
}

.feedback-form {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    max-width: 90vw;
    background: var(--chat-bg);
    border-radius: 30px;
    padding: 2rem;
    z-index: 2001;
    display: none;
    color: #fff;
    box-shadow: 0 20px 40px var(--dark-shadow);
}

.feedback-form h3 {
    margin-bottom: 1.5rem;
    color: var(--jinmuse);
    text-align: center;
}

.feedback-form label {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

.feedback-form input,
.feedback-form textarea {
    width: 100%;
    padding: 0.6rem 1rem;
    margin-bottom: 1rem;
    background: var(--bg-surface);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    color: #fff;
    font-family: inherit;
}

.feedback-form textarea {
    border-radius: 20px;
    resize: vertical;
}

.feedback-form input:focus,
.feedback-form textarea:focus {
    outline: none;
    border-color: var(--jinmuse);
}

.feedback-submit {
    width: 100%;
    background: var(--jinmuse);
    border: none;
    color: #fff;
    padding: 0.8rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s;
}

.feedback-submit:hover {
    background: #e08e15;
}

.feedback-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
}

.feedback-close:hover {
    color: var(--jinmuse);
}

/* ----- 进度条 ----- */
.progress-container {
    position: relative;
    width: 100%;
    height: 4px;
    background-color: #aaa;
    overflow: visible;
    z-index: 30;
}

.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #ceb384;
    transition: width 0.3s ease;
}

.progress-dot {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255,255,255,0.8);
    transition: left 0.3s ease;
    pointer-events: none;
    z-index: 31;
}

.bottom-bar {
    position: relative;
    z-index: 20;
}

/* ----- 作品详情页画廊（全屏查看）----- */
.gallery-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.gallery-overlay.active {
    display: flex;
}

.gallery-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 2001;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    transition: background 0.2s;
}

.gallery-close:hover {
    background: rgba(255,255,255,0.2);
}

.gallery-prev, .gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 50px;
    cursor: pointer;
    padding: 20px;
    background: rgba(0,0,0,0.5);
    border-radius: 10px;
    transition: background 0.2s;
    user-select: none;
    z-index: 2001;
}

.gallery-prev:hover, .gallery-next:hover {
    background: rgba(255,255,255,0.2);
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

.gallery-image {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    z-index: 2001;
}

.gallery-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 16px;
    background: rgba(0,0,0,0.5);
    padding: 8px 16px;
    border-radius: 30px;
    z-index: 2001;
}

/* 图片项悬浮效果：使用金色 #F0BE1E */
.gallery-item {
    background: var(--bg-surface);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 20px var(--dark-shadow);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, border 0.3s;
    border: 2px solid transparent;
    width: 100%;
    height: auto;  /* 高度由图片撑开 */
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px rgba(0,0,0,0.3);
    border-color: #F0BE1E;
}

.gallery-item img {
    width: 100%;
    height: auto;  /* 保持原始比例 */
    object-fit: contain;  /* 完整显示图片，不裁剪 */
    display: block;
    background-color: #2a2a2a;  /* 留白区域的背景色 */
}

@media (max-width: 768px) {
    .gallery-prev, .gallery-next {
        font-size: 30px;
        padding: 10px;
    }
    .gallery-close {
        font-size: 30px;
        top: 10px;
        right: 15px;
    }
}

/* ----- 作品详情页布局优化（响应式） ----- */
.detail-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 4rem;
    width: 100%;
    box-sizing: border-box;
}

.detail-section {
    background: var(--black-10);
    border-radius: 30px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.detail-title {
    font-size: 2.2rem;
    color: var(--jinmuse);
    text-align: center;
    margin-bottom: 1rem;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 1.5rem 0;
    color: #fff;
}

.meta-item {
    flex: 1;
    min-width: 200px;
}

.meta-label {
    color: var(--jinmuse);
    font-weight: 500;
    margin-right: 0.5rem;
}

.detail-desc {
    line-height: 1.8;
    color: var(--白天文字2);
    margin: 1rem 0;
}

/* 作品详情页图片画廊 - 单列大图 */
.gallery {
    display: grid;
    grid-template-columns: 1fr;  /* 单列，宽度100% */
    gap: 2rem;
    margin-top: 2rem;
}

.hr {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 2rem 0;
}

/* 大屏幕时增加内边距 */
@media (min-width: 1600px) {
    .detail-container {
        padding: 2rem 6rem;
    }
}

/* 移动端调整 */
@media (max-width: 768px) {
    .detail-container {
        padding: 1rem 1.5rem;
    }
}

/* 动画效果 */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.2, 0.9, 0.3, 1), transform 0.6s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.cards-grid .card {
    transition-delay: 0s;
}
.cards-grid.animated .card:nth-child(1) { transition-delay: 0.05s; }
.cards-grid.animated .card:nth-child(2) { transition-delay: 0.15s; }
.cards-grid.animated .card:nth-child(3) { transition-delay: 0.25s; }
.cards-grid.animated .card:nth-child(4) { transition-delay: 0.35s; }
.cards-grid.animated .card:nth-child(5) { transition-delay: 0.45s; }
.cards-grid.animated .card:nth-child(6) { transition-delay: 0.55s; }

/* 分页样式 */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.5rem;
    background: var(--bg-surface);
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    box-shadow: 0 4px 8px var(--dark-shadow);
}
.pagination a:hover {
    background: var(--bg-highlight);
    color: var(--jinmuse);
    transform: translateY(-2px);
}
.pagination .current {
    background: var(--jinmuse);
    color: #000;
    pointer-events: none;
}
.pagination a.disabled {
    opacity: 0.5;
    pointer-events: none;
}