/* ===== 烛光红主题 - 全局深暖色 ===== */
body {
  background-color: #1a110e;
  color: #f2e0d4;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

/* 所有标题文字暖白 */
h1, h2, h3, h4, h5, h6 {
  color: #fff0e6 !important;
}

/* 底部版权区域 */
footer {
  background-color: #0d0806 !important;
  border-top: 1px solid #4a2c24;
  color: #b89a8a;
}

/* 覆盖主题原有的淡灰色卡片类（如有残留） */
.bg-light-gray,
.bg-near-white,
.bg-washed-blue {
  background-color: #2b1f1b !important;
  color: #f2e0d4 !important;
}

/* ===== 顶部导航栏（全新设计） ===== */
.top-nav {
  background: rgba(13, 8, 6, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(224, 90, 71, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.8rem 2rem;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.nav-brand a {
  color: #e05a47;
  font-size: 1.8rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #e05a47, #f2a07e);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: none;
}
.nav-brand a:hover {
  filter: brightness(1.1);
}

.nav-menu {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  position: relative;
  display: inline-block;
  padding: 0.6rem 1.2rem;
  color: #f2e0d4;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 40px;
  transition: all 0.25s ease;
  background: transparent;
  overflow: hidden;
  z-index: 1;
}

.nav-menu li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #e05a47, #c24b3a);
  border-radius: 40px;
  opacity: 0;
  transition: opacity 0.25s;
  z-index: -1;
}

.nav-menu li a:hover {
  color: #fff0e6;
  transform: translateY(-2px);
}
.nav-menu li a:hover::before {
  opacity: 1;
}

.nav-menu li a.active {
  color: #fff0e6;
  background: linear-gradient(120deg, #e05a47, #c24b3a);
  box-shadow: 0 4px 10px rgba(224, 90, 71, 0.3);
}

/* ===== 首页布局 ===== */
.two-column-layout {
  display: flex;
  gap: 2rem;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1rem;
  flex-wrap: wrap;
}
.left-player {
  flex: 1;
  min-width: 300px;
}
.right-content {
  flex: 1.3;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.double-charts {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.chart-left, .chart-right {
  flex: 1;
  min-width: 280px;
  background-color: #2b1f1b;
  border-radius: 8px;
  padding: 1rem;
}

/* 首页特定区域 */
section.w-100.mw8.center.pv3.tc,
section.w-100.mw8.center.pv4.tc,
.bottom-links {
  background-color: rgba(224, 90, 71, 0.08);
  border-radius: 8px;
  padding: 2rem;
  max-width: 1600px;
  margin: 2rem auto;
  width: 95%;
  box-sizing: border-box;
  text-align: center;
}
.bottom-links {
  background-color: #1f1612;
  margin-top: 0;
}

/* ===== 音乐播放器样式 ===== */
.music-player-container {
  max-width: 400px;
  margin: 1rem auto;
  background: linear-gradient(145deg, #2b1f1b 0%, #1f1612 100%);
  border-radius: 24px;
  padding: 1.5rem;
  color: #fff0e6;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}
.player-cover {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.player-cover .cover-image,
.player-cover .cover-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  object-fit: cover;
  background: #4a2c24;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cover-placeholder {
  font-size: 2rem;
  color: #e05a47;
  opacity: 0.9;
}
.song-info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.8rem;
}
.song-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 0.2rem 0;
}
.song-artist {
  font-size: 0.9rem;
  color: #c6a696;
  margin: 0;
}
.play-count {
  font-size: 0.9rem;
  color: #e05a47;
  background: rgba(224, 90, 71, 0.15);
  padding: 0.3rem 0.8rem;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
}
.progress-container {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}
.progress-bar {
  flex: 1;
  height: 5px;
  -webkit-appearance: none;
  background: #4a2c24;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
}
.progress-bar::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #e05a47;
  box-shadow: 0 0 10px #e05a47;
  cursor: pointer;
}
.time-current, .time-duration {
  font-size: 0.85rem;
  color: #c6a696;
  min-width: 45px;
  text-align: center;
}
.control-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
}
.control-buttons button {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff0e6;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.2s;
}
.control-buttons button:hover {
  background: #e05a47;
  transform: scale(1.05);
}
.control-buttons .btn-playpause {
  background: #e05a47;
  width: 56px;
  height: 56px;
  font-size: 1.4rem;
}
.volume-control {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}
.btn-volume {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff0e6;
  font-size: 1.3rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
}
.btn-volume:hover {
  background: #e05a47;
}
.volume-slider {
  flex: 1;
  height: 4px;
  -webkit-appearance: none;
  background: #4a2c24;
  border-radius: 4px;
  max-width: 100px;
  cursor: pointer;
}
.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e05a47;
}
.current-lyric-line {
  text-align: center;
  margin: 1rem 0 1.2rem;
  padding: 0.8rem;
  background: rgba(224, 90, 71, 0.1);
  border-radius: 50px;
  border: 1px solid rgba(224, 90, 71, 0.3);
}
.lyric-current-text {
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff0e6;
  text-shadow: 0 0 15px #e05a47;
}
.lyrics-container {
  max-height: 300px;
  overflow-y: auto;
  background: rgba(26, 17, 14, 0.9);
  border-radius: 16px;
  padding: 1rem 0.8rem;
  scroll-behavior: smooth;
}
.lyrics-scroll {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.lyric-line {
  font-size: 1rem;
  color: #c6a696;
  text-align: center;
  padding: 0.3rem 0.5rem;
  transition: all 0.2s;
  border-radius: 8px;
}
.lyric-line.current {
  color: #fff0e6;
  background: rgba(224, 90, 71, 0.3);
  font-weight: 500;
}
.lyrics-container::-webkit-scrollbar {
  width: 6px;
}
.lyrics-container::-webkit-scrollbar-track {
  background: #2b1f1b;
  border-radius: 10px;
}
.lyrics-container::-webkit-scrollbar-thumb {
  background: #e05a47;
  border-radius: 10px;
}

/* ===== 视频播放器样式（全局基础） ===== */
.video-player-container {
  width: 100%;
  background-color: #2b1f1b;
  border-radius: 8px;
  padding: 1rem;
  color: #fff0e6;
  box-sizing: border-box;
}
.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background-color: #0d0806;
  border-radius: 4px;
  overflow: hidden;
}
.video-element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.video-player-container .progress-bar::-webkit-slider-thumb {
  background: #e05a47;
}
.video-player-container .btn-playpause {
  background: #e05a47 !important;
  color: #fff0e6 !important;
}

/* ===== MV 页面专用样式 ===== */
.mv-page {
  background-size: cover;
  background-attachment: fixed;
}
.mv-page .video-player-container {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 1.2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.mv-page .video-wrapper {
  position: relative !important;
  width: 100% !important;
  padding-bottom: 0 !important;
  aspect-ratio: 16 / 9 !important;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}
.mv-page .video-element {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}
.mv-page .video-player-container .btn-playpause {
  background: #e05a47 !important;
}
.video-card {
  transition: transform 0.2s, box-shadow 0.2s;
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
}

/* ===== 盲盒页面样式 ===== */
.albums-page {
  max-width: 1600px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.page-header h1 {
  font-size: 2rem;
  margin: 0;
}
.page-description {
  color: #c6a696;
  margin: 0.25rem 0 0 0;
}
.btn-random {
  background: #2b1f1b;
  border: 1px solid #4a2c24;
  border-radius: 40px;
  padding: 0.5rem 1.2rem;
  color: #f2e0d4;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-random:hover {
  background: #e05a47;
  border-color: #e05a47;
  transform: scale(1.02);
}
.albums-page .two-column-layout {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}
.albums-page .left-player {
  flex: 1;
  min-width: 300px;
}
.right-playlist {
  flex: 1.2;
  min-width: 300px;
  background: #2b1f1b;
  border-radius: 16px;
  padding: 1rem;
  border: 1px solid #4a2c24;
}
.playlist-title {
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 1rem;
  color: #fff0e6;
  border-left: 4px solid #e05a47;
  padding-left: 0.8rem;
}
.playlist-songs {
  max-height: 400px;
  overflow-y: auto;
}
.song-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.song-item {
  padding: 0.8rem;
  border-bottom: 1px solid #4a2c24;
  transition: background 0.2s;
  cursor: pointer;
}
.song-item:hover {
  background: #3a2a24;
}
.song-item .song-title {
  font-size: 1rem;
  font-weight: 500;
  color: #fff0e6;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.all-albums-section {
  margin-top: 2rem;
}
.section-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #fff0e6;
  border-left: 4px solid #e05a47;
  padding-left: 0.8rem;
}
.albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.album-card {
  background: #2b1f1b;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.2s;
  border: 1px solid #4a2c24;
}
.album-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.4);
  border-color: #e05a47;
}
.album-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.album-cover {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #3a2a24;
}
.album-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.album-card:hover .album-cover img {
  transform: scale(1.05);
}
.cover-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #3a2a24, #2b1f1b);
  font-size: 3rem;
  color: #e05a47;
}
.album-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s;
  cursor: pointer;
}
.album-overlay i {
  font-size: 2.5rem;
  color: #e05a47;
  text-shadow: 0 0 8px #e05a47;
}
.album-overlay span {
  color: #fff0e6;
  font-size: 0.9rem;
}
.album-card:hover .album-overlay {
  opacity: 1;
}
.album-info {
  padding: 1rem;
}
.album-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.album-description {
  font-size: 0.85rem;
  color: #c6a696;
  margin: 0 0 0.5rem 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.album-meta {
  font-size: 0.8rem;
  color: #e05a47;
}
.song-count i {
  margin-right: 0.25rem;
}
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}
.pagination .page-item {
  display: inline-block;
}
.pagination .page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.75rem;
  background: #2b1f1b;
  border: 1px solid #4a2c24;
  border-radius: 8px;
  color: #f2e0d4;
  text-decoration: none;
  transition: all 0.2s;
}
.pagination .page-link:hover {
  background: #e05a47;
  border-color: #e05a47;
  color: #fff0e6;
}
.pagination .active .page-link {
  background: #e05a47;
  border-color: #e05a47;
  color: #fff0e6;
  cursor: default;
}
.pagination .disabled .page-link {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* ===== 品牌区 & 宣言样式 ===== */
.brand-header {
  margin-bottom: 0.2rem;
}
.brand-title {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.2rem 0.5rem;
}
.brand-part1 {
  font-size: 2rem;
  font-weight: 800;
  color: #e05a47;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.2), 4px 4px 0 rgba(224,90,71,0.1);
  letter-spacing: 2px;
  line-height: 1.2;
}
.brand-part2 {
  font-size: 1.4rem;
  font-weight: 400;
  color: #f2a07e;
  font-style: italic;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.2);
  letter-spacing: 1px;
  background: rgba(242, 160, 126, 0.1);
  padding: 0.1rem 0.6rem;
  border-radius: 30px;
  backdrop-filter: blur(2px);
  border: 1px solid rgba(242, 160, 126, 0.3);
}
.declaration {
  margin: 0.2rem 0 0.1rem;
  padding: 0.2rem 0 0.1rem;
  border-top: 2px solid rgba(255,255,255,0.1);
  border-bottom: 2px solid rgba(255,255,255,0.1);
  position: relative;
  text-align: center;
}
.declaration::before {
  content: '“';
  font-size: 1.8rem;
  color: rgba(224, 90, 71, 0.2);
  position: absolute;
  left: 0;
  top: -6px;
  font-family: serif;
  transform: rotate(180deg);
}
.declaration::after {
  content: '”';
  font-size: 1.8rem;
  color: rgba(224, 90, 71, 0.2);
  position: absolute;
  right: 0;
  bottom: -6px;
  font-family: serif;
}
.declaration-chinese {
  font-size: 1rem;
  font-weight: 600;
  color: #fff0e6;
  text-shadow: 0 0 10px #e05a47, 1px 1px 2px rgba(0,0,0,0.3);
  letter-spacing: 2px;
  margin-bottom: 0.1rem;
  font-style: italic;
  line-height: 1.3;
}
.declaration-english {
  font-size: 0.7rem;
  font-weight: 300;
  color: #c6a696;
  text-transform: uppercase;
  letter-spacing: 3px;
  word-spacing: 6px;
  font-style: normal;
  border-top: 1px dashed rgba(255,255,255,0.2);
  display: inline-block;
  padding-top: 0.2rem;
}

/* ===== 专辑详情页样式 ===== */
.album-detail-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.album-header {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.album-cover-large {
  flex: 0 0 200px;
  width: 200px;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  background: #3a2a24;
}
.album-cover-large img,
.cover-placeholder-large {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3a2a24;
  font-size: 3rem;
  color: #e05a47;
}
.album-info-large {
  flex: 1;
}
.album-info-large h1 {
  font-size: 2rem;
  margin: 0 0 0.5rem 0;
}
.album-description {
  color: #c6a696;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.album-meta {
  color: #e05a47;
}
.album-detail-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}
.album-player-col {
  flex: 1 1 60%;
  min-width: 280px;
}
.album-songlist-col {
  flex: 1 1 35%;
  min-width: 280px;
}
.song-list-items {
  list-style: none;
  padding: 0;
}
.song-list-items .song-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem;
  border-bottom: 1px solid #4a2c24;
  gap: 1rem;
}
.song-list-items .song-title {
  font-size: 1rem;
  font-weight: 500;
  color: #fff0e6;
  flex: 2;
}
.song-list-items .song-artist {
  font-size: 0.9rem;
  color: #c6a696;
  flex: 1;
}
.play-song-btn {
  background: #e05a47;
  border: none;
  color: #fff0e6;
  font-size: 0.8rem;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s;
}
.play-song-btn:hover {
  background: #e87a66;
  transform: scale(1.02);
}

/* ===== 首页MV播放器尺寸再缩小1/3 ===== */
.right-content .mv-section .video-player-container {
  max-width: 66.667%;
  margin-left: auto;
  margin-right: auto;
}

/* ===== 关于页面样式 ===== */
.about-container {
  max-width: 800px;
  margin: 2rem auto;
  background: #2b1f1b;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.about-avatar {
  text-align: center;
  font-size: 5rem;
  color: #e05a47;
  margin-bottom: 1rem;
}
.about-intro {
  text-align: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid #4a2c24;
  padding-bottom: 1rem;
}
.about-intro h2 {
  margin: 0 0 0.5rem;
  font-size: 2rem;
  color: #e05a47;
}
.about-intro p {
  color: #c6a696;
  font-size: 1rem;
}
.about-section {
  margin-bottom: 2rem;
}
.about-section h3 {
  font-size: 1.3rem;
  color: #e05a47;
  margin-bottom: 1rem;
  border-left: 3px solid #e05a47;
  padding-left: 1rem;
}
.about-section h3 i {
  margin-right: 0.5rem;
}
.about-section p {
  line-height: 1.6;
  color: #f2e0d4;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-list li {
  margin-bottom: 0.8rem;
  font-size: 1rem;
  color: #f2e0d4;
}
.contact-list li i {
  width: 1.8rem;
  color: #e05a47;
}

/* ===== 小说页面开荒样式 ===== */
.construction-container {
  min-height: 70vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  border-radius: 24px;
  margin: 2rem 0;
}
.construction-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 24px;
}
.construction-content {
  position: relative;
  z-index: 1;
  background: rgba(26, 17, 14, 0.85);
  backdrop-filter: blur(8px);
  padding: 2.5rem 3rem;
  border-radius: 32px;
  border: 1px solid rgba(224, 90, 71, 0.5);
  max-width: 90%;
  width: 500px;
}
.construction-content h1 {
  font-size: 2.5rem;
  color: #e05a47;
  margin-bottom: 1rem;
}
.construction-content p {
  font-size: 1.2rem;
  color: #f2e0d4;
  margin-bottom: 1.5rem;
}
.construction-spinner {
  display: inline-block;
  font-size: 2rem;
  animation: spin 2s linear infinite;
  color: #e05a47;
}

/* ===== 游戏开发页面 - 左右笔记本排版 ===== */
.game-dev-layout {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}
.dev-left {
  flex: 1;
  min-width: 280px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 24px;
  position: relative;
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}
.dev-left:hover {
  transform: translateY(-5px);
}
.notebook-content {
  background: rgba(26, 17, 14, 0.85);
  backdrop-filter: blur(6px);
  border-radius: 24px;
  padding: 2rem;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid rgba(224, 90, 71, 0.4);
  box-shadow: inset 0 0 20px rgba(0,0,0,0.2);
}
.dev-right {
  flex: 1;
  min-width: 300px;
  background: #2b1f1b;
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}
.dev-right:hover {
  transform: translateY(-5px);
}
.game-video h2 {
  text-align: center;
  color: #e05a47;
  margin-bottom: 1rem;
}
.game-video video {
  border-radius: 16px;
  width: 100%;
  height: auto;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.construction-info {
  text-align: center;
}
.construction-info h1 {
  font-size: 2.2rem;
  color: #e05a47;
  margin-bottom: 1rem;
}
.construction-info p {
  font-size: 1.1rem;
  color: #f2e0d4;
  margin-bottom: 1.5rem;
}
.construction-spinner {
  display: inline-block;
  font-size: 2rem;
  animation: spin 2s linear infinite;
  color: #e05a47;
}

/* ===== 全局动画（合并重复） ===== */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ===== 移动端全局响应式（合并所有媒体查询） ===== */
@media (max-width: 768px) {
  /* 导航栏 */
  .top-nav {
    padding: 0.6rem 1rem;
  }
  .nav-container {
    flex-direction: column;
    gap: 0.8rem;
  }
  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.3rem;
  }
  .nav-menu li a {
    padding: 0.4rem 0.9rem;
    font-size: 0.9rem;
  }
  /* 首页布局 */
  .two-column-layout {
    flex-direction: column;
  }
  .double-charts {
    flex-direction: column;
  }
  .player-cover .cover-image,
  .player-cover .cover-placeholder {
    width: 100px;
    height: 100px;
  }
  .cover-placeholder {
    font-size: 1.5rem;
  }
  /* 盲盒页面 */
  .albums-page .two-column-layout {
    flex-direction: column;
  }
  .right-playlist {
    margin-top: 1rem;
  }
  .albums-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
  }
  .album-title {
    font-size: 0.9rem;
  }
  .album-description {
    font-size: 0.75rem;
    -webkit-line-clamp: 1;
  }
  .page-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn-random {
    align-self: flex-start;
  }
  .pagination .page-link {
    min-width: 36px;
    height: 36px;
    padding: 0 0.5rem;
    font-size: 0.8rem;
  }
  /* 品牌区 */
  .brand-part1 {
    font-size: 1.6rem;
  }
  .brand-part2 {
    font-size: 1.1rem;
    padding: 0.1rem 0.5rem;
  }
  .declaration {
    margin: 0.2rem 0;
    padding: 0.2rem 0;
  }
  .declaration::before,
  .declaration::after {
    font-size: 1.5rem;
    top: -4px;
    bottom: -4px;
  }
  .declaration-chinese {
    font-size: 0.9rem;
    letter-spacing: 1px;
  }
  .declaration-english {
    font-size: 0.6rem;
    letter-spacing: 2px;
    padding-top: 0.1rem;
  }
  /* MV 页面 */
  .mv-page .video-player-container {
    padding: 0.8rem;
  }
  /* 专辑详情页 */
  .album-detail-layout {
    flex-direction: column;
  }
  .album-player-col,
  .album-songlist-col {
    flex: 1 1 auto;
  }
  .album-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .album-cover-large {
    width: 150px;
    height: 150px;
  }
  .song-list-items .song-item {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .song-list-items .song-title {
    flex-basis: 100%;
  }
  .play-song-btn {
    margin-left: auto;
  }
  /* 小说页面 */
  .construction-content {
    padding: 1.5rem;
    width: 90%;
  }
  .construction-content h1 {
    font-size: 1.8rem;
  }
  .construction-content p {
    font-size: 1rem;
  }
  /* 游戏开发页面 */
  .game-dev-layout {
    flex-direction: column;
  }
  .dev-left, .dev-right {
    width: 100%;
  }
  .notebook-content {
    min-height: 300px;
    padding: 1.5rem;
  }
  .construction-info h1 {
    font-size: 1.8rem;
  }
  .construction-info p {
    font-size: 1rem;
  }
}
/* 修复游戏开发页面视频播放器异常 */
.game-dev-layout .game-video video {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* 确保游戏开发页面不受全局视频播放器样式影响 */
.game-dev-layout .video-player-container {
  all: unset; /* 重置所有继承的样式 */
  display: block;
}
.game-dev-layout .video-wrapper {
  all: unset;
}
.game-dev-layout .video-element {
  all: unset;
}
/* 全部歌曲页面 */
.all-songs-page {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1rem;
}
.right-songlist {
  flex: 1.3;
  min-width: 300px;
  background: #2b1f1b;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid #4a2c24;
}
.right-songlist h2 {
  margin-top: 0;
  color: #e05a47;
  border-left: 4px solid #e05a47;
  padding-left: 1rem;
}
.song-list-full {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 70vh;
  overflow-y: auto;
}
.song-list-full .song-item-full {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid #4a2c24;
  cursor: pointer;
  transition: background 0.2s;
}
.song-list-full .song-item-full:hover {
  background: #3a2a24;
}
.song-list-full .song-title {
  font-size: 1rem;
  font-weight: 500;
  color: #fff0e6;
}
.song-list-full .song-artist {
  font-size: 0.85rem;
  color: #c6a696;
}
/* 搜索页面样式 */
.search-page {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
}
.search-title {
  text-align: center;
  color: #e05a47;
  margin-bottom: 1.5rem;
}
.search-box {
  position: relative;
  margin-bottom: 2rem;
}
#searchInput {
  width: 100%;
  padding: 1rem 2.5rem 1rem 1rem;
  font-size: 1rem;
  border: 1px solid #4a2c24;
  border-radius: 40px;
  background: #2b1f1b;
  color: #f2e0d4;
  outline: none;
}
#searchInput:focus {
  border-color: #e05a47;
}
#searchClear {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #c6a696;
  font-size: 1.2rem;
  cursor: pointer;
}
.search-results {
  background: #2b1f1b;
  border-radius: 24px;
  padding: 1rem;
}
.result-group {
  margin-bottom: 1.5rem;
}
.result-group h3 {
  color: #e05a47;
  margin-bottom: 0.5rem;
  border-left: 3px solid #e05a47;
  padding-left: 0.8rem;
}
.result-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid #4a2c24;
  cursor: pointer;
  transition: background 0.2s;
}
.result-item:hover {
  background: #3a2a24;
}
.result-info {
  flex: 1;
}
.result-title {
  font-weight: 500;
  color: #fff0e6;
}
.result-meta {
  font-size: 0.8rem;
  color: #c6a696;
}
.play-icon, .arrow-icon {
  color: #e05a47;
  font-size: 1.2rem;
  margin-left: 1rem;
}
.hint, .no-results, .loading {
  text-align: center;
  color: #c6a696;
  padding: 2rem;
}
.loading {
  animation: pulse 1s infinite;
}
@keyframes pulse {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}
/* 全局搜索样式 */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.global-search {
  position: relative;
}
#global-search-input {
  padding: 0.4rem 1rem;
  border-radius: 40px;
  border: 1px solid #4a2c24;
  background: #2b1f1b;
  color: #f2e0d4;
  font-size: 0.9rem;
  outline: none;
  width: 180px;
  transition: width 0.2s;
}
#global-search-input:focus {
  width: 240px;
  border-color: #e05a47;
}
.global-search-results {
  position: absolute;
  top: 100%;
  right: 0;
  width: 300px;
  max-height: 400px;
  overflow-y: auto;
  background: #2b1f1b;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  z-index: 1000;
  margin-top: 0.5rem;
  border: 1px solid #4a2c24;
}
.global-search-results .result-item {
  padding: 0.6rem 1rem;
  cursor: pointer;
  border-bottom: 1px solid #4a2c24;
  transition: background 0.2s;
}
.global-search-results .result-item:hover {
  background: #3a2a24;
}
.global-search-results .result-title {
  font-weight: 500;
  color: #fff0e6;
}
.global-search-results .result-meta {
  font-size: 0.75rem;
  color: #c6a696;
}
.global-search-results .no-results {
  padding: 0.8rem;
  text-align: center;
  color: #c6a696;
}
@media (max-width: 768px) {
  #global-search-input { width: 120px; }
  #global-search-input:focus { width: 160px; }
  .global-search-results { width: 260px; right: 0; left: auto; }
}
/* 底链优化样式 - 保持单个链接“关于我 | 联系方式” */
.bottom-links {
  background-color: rgba(31, 22, 18, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 48px;
  padding: 1rem 2rem;
  margin: 2rem auto;
  max-width: 500px;
  text-align: center;
  border: 1px solid rgba(224, 90, 71, 0.25);
  transition: all 0.3s ease;
}

.bottom-links p {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.5px;
  color: #c6a696;
}

.bottom-links a {
  color: #f2a07e;
  text-decoration: none;
  font-weight: 500;
  padding: 0.2rem 0.6rem;
  border-radius: 30px;
  transition: all 0.2s;
  display: inline-block;
}

.bottom-links a:hover {
  color: #fff0e6;
  background-color: #e05a47;
  text-shadow: 0 0 4px rgba(0,0,0,0.2);
  transform: translateY(-1px);
}

/* 移动端适配 */
@media (max-width: 768px) {
  .bottom-links {
    padding: 0.7rem 1rem;
    margin: 1rem auto;
    max-width: 90%;
  }
  .bottom-links p {
    font-size: 0.85rem;
  }
}
/* 页脚备案号链接样式 */
.site-footer .footer-content a {
  color: #b89a8a;
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer .footer-content a:hover {
  color: #e05a47;
  text-decoration: underline;
}