/* Apple风格黑胶盒子页面样式 */

/* 全局样式 */
.vinyl-page {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #1d1d1f;
  background: #ffffff;
}

/* Apple风格页面头部 */
.apple-hero {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  color: white;
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 500px;
}

.apple-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 22px;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 56px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: -0.005em;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 1.2;
  color: #f5f5f7;
}

.hero-description {
  font-size: 21px;
  font-weight: 400;
  line-height: 1.4;
  color: #a1a1a6;
  max-width: 600px;
  margin: 0 auto 20px auto;
}

.hero-actions {
  text-align: center;
  margin-top: 20px;
}

.learn-more-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #FF6B35;
  color: white;
  text-decoration: none;
  border-radius: 980px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.17647;
  letter-spacing: -0.022em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.learn-more-btn:hover {
  background: #E55A2B;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* 服务展示区域 */
.services-section {
  padding: 80px 0;
  background: #f5f5f7;
}

.services-container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 22px;
}

/* 主要服务卡片 */
.main-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}

.service-card.main-card {
  background: white;
  border-radius: 18px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card.main-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
}

/* 黑胶图标 */
.vinyl-icon-small {
  position: relative;
  width: 60px;
  height: 60px;
}

.vinyl-disc-small {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  animation: rotate 8s linear infinite;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.vinyl-disc-small::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

/* 播客图标 */
.podcast-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #007aff, #5856d6);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 122, 255, 0.3);
}

.mic-icon {
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 4px;
  position: relative;
}

.mic-icon::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 12px;
  background: #007aff;
  border-radius: 2px;
}

.service-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1d1d1f;
}

.service-description {
  font-size: 17px;
  color: #86868b;
  margin-bottom: 25px;
  line-height: 1.4;
}

.service-link {
  display: inline-block;
  color: #007aff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.service-link:hover {
  color: #0051d5;
}

.service-link sup {
  font-size: 12px;
  color: #86868b;
}

/* 详细服务列表 */
.detailed-services {
  margin-top: 60px;
}

.service-category {
  margin-bottom: 60px;
}

.category-heading {
  font-size: 24px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 30px;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.service-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.service-image {
  width: 100%;
  height: 160px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-item:hover .service-image img {
  transform: scale(1.05);
}

.service-info {
  padding: 20px;
}

.service-info h5 {
  font-size: 17px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 8px;
}

.service-info p {
  font-size: 14px;
  color: #86868b;
  margin-bottom: 15px;
  line-height: 1.4;
}

.service-action {
  display: inline-block;
  color: #007aff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.service-action:hover {
  color: #0051d5;
}

/* Apple风格页脚 - 使用更具体的选择器避免冲突 */
.vinyl-page .apple-footer {
  background: #f5f5f7;
  border-top: 1px solid #d2d2d7;
  padding: 40px 0 20px;
}

.vinyl-page .apple-footer .footer-container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 22px;
}

.vinyl-page .apple-footer .footer-note {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #d2d2d7;
}

.vinyl-page .apple-footer .footer-note p {
  font-size: 12px;
  color: #86868b;
  line-height: 1.4;
  max-width: 600px;
  margin: 0 auto;
}

.vinyl-page .apple-footer .footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 30px;
}

.vinyl-page .apple-footer .footer-section h4 {
  font-size: 12px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vinyl-page .apple-footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vinyl-page .apple-footer .footer-links a {
  font-size: 12px;
  color: #424245;
  text-decoration: none;
  transition: color 0.3s ease;
}

.vinyl-page .apple-footer .footer-links a:hover {
  color: #007aff;
}

.vinyl-page .apple-footer .footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #d2d2d7;
}

.vinyl-page .apple-footer .footer-bottom p {
  font-size: 12px;
  color: #86868b;
  margin-bottom: 5px;
  line-height: 1.4;
}

/* 动画 */
@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* 响应式设计 */
@media (max-width: 768px) {
  .hero-title {
    font-size: 40px;
  }
  
  .hero-subtitle {
    font-size: 24px;
  }
  
  .hero-description {
    font-size: 18px;
    margin-bottom: 30px;
  }
  
  .learn-more-btn {
    padding: 10px 20px;
    font-size: 16px;
  }
  
  .main-services {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
  }
  
  .service-card.main-card {
    padding: 30px 20px;
  }
  
  .service-title {
    font-size: 28px;
  }
  
  .vinyl-page .apple-footer .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .service-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .apple-hero {
    padding: 80px 0 60px;
  }
  
  .hero-container {
    padding: 0 16px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 20px;
  }
  
  .hero-description {
    font-size: 16px;
    margin-bottom: 25px;
  }
  
  .learn-more-btn {
    padding: 8px 16px;
    font-size: 15px;
  }
  
  .services-section {
    padding: 60px 0;
  }
  
  .services-container {
    padding: 0 16px;
  }
  
  .service-card.main-card {
    padding: 25px 15px;
  }
  
  .vinyl-page .apple-footer .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .vinyl-page .apple-footer .footer-container {
    padding: 0 16px;
  }
}

/* 滚动专辑展示区域 */
.album-showcase {
  padding: 20px 0;
  background: transparent;
  margin: 0;
  position: relative;
  z-index: 10;
  width: 100%;
}

.album-container {
  width: 100%;
  margin: 0;
  padding: 0 22px;
}

.album-section-title {
  font-size: 32px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 40px;
  text-align: center;
  letter-spacing: -0.003em;
}

.album-scroll-container {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px 0 5px 0;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  width: 100%;
}

.album-scroll-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.album-scroll-wrapper {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scroll 20s linear infinite;
  padding: 0 40px;
}

.album-item {
  flex-shrink: 0;
  width: 200px;
  text-align: left;
  transition: transform 0.3s ease;
}

.album-item:hover {
  transform: translateY(-8px);
}

.album-cover {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s ease;
}

.album-cover:hover {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

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

.album-item:hover .album-cover img {
  transform: scale(1.05);
}

.album-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.album-item:hover .album-overlay {
  opacity: 1;
}

.play-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  transform: scale(0.8);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.album-item:hover .play-button {
  transform: scale(1);
}

.album-title {
  font-size: 17px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 6px;
  line-height: 1.3;
}

.album-artist {
  font-size: 14px;
  color: #86868b;
  line-height: 1.3;
}

/* 滚动动画 */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* 暂停滚动动画当鼠标悬停 */
.album-scroll-container:hover .album-scroll-wrapper {
  animation-play-state: paused;
}

/* 深色模式支持 */
@media (prefers-color-scheme: dark) {
  .vinyl-page {
    background: #000000;
    color: #f5f5f7;
  }
  
  .services-section {
    background: #1c1c1e;
  }
  
  .service-card.main-card,
  .service-item {
    background: #1c1c1e;
    border: 1px solid #2c2c2e;
  }
  
  .service-title,
  .service-info h5,
  .category-heading {
    color: #f5f5f7;
  }
  
  .service-description,
  .service-info p {
    color: #a1a1a6;
  }
  
  .vinyl-page .apple-footer {
    background: #1c1c1e;
    border-top-color: #2c2c2e;
  }
  
  .vinyl-page .apple-footer .footer-note,
  .vinyl-page .apple-footer .footer-bottom {
    border-top-color: #2c2c2e;
  }
  
  .vinyl-page .apple-footer .footer-section h4 {
    color: #f5f5f7;
  }
  
  .vinyl-page .apple-footer .footer-links a {
    color: #a1a1a6;
  }
  
  .vinyl-page .apple-footer .footer-links a:hover {
    color: #007aff;
  }
  
  .album-showcase {
    background: transparent;
  }
  
  .album-section-title,
  .album-title {
    color: #f5f5f7;
  }
  
  .album-artist {
    color: #a1a1a6;
  }
}

/* 滚动专辑展示响应式设计 */
@media (max-width: 768px) {
  .album-showcase {
    padding: 15px 0;
    margin: 10px 0;
  }
  
  .album-section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .album-item {
    width: 160px;
  }
  
  .album-cover {
    width: 160px;
    height: 160px;
  }
  
  .album-scroll-wrapper {
    gap: 16px;
    padding: 0 16px;
  }
  
  .album-title {
    font-size: 15px;
  }
  
  .album-artist {
    font-size: 13px;
  }
  
  .play-button {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .album-showcase {
    padding: 10px 0;
    margin: 8px 0;
  }
  
  .album-container {
    padding: 0 16px;
    width: 100%;
  }
  
  .album-section-title {
    font-size: 24px;
  }
  
  .album-item {
    width: 140px;
  }
  
  .album-cover {
    width: 140px;
    height: 140px;
  }
  
  .album-scroll-wrapper {
    gap: 12px;
    padding: 0 12px;
  }
  
  .album-title {
    font-size: 14px;
  }
  
  .album-artist {
    font-size: 12px;
  }
  
  .play-button {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

}




.platforms-container{max-width:1200px;margin:0 auto;padding:0 20px}
.platforms-title{text-align:center;margin-bottom:60px}
.platforms-title h2{font-size:2.5rem;color:#ffffff;margin-bottom:15px}
.platforms-title p{font-size:1.1rem;color:#cccccc}
.platforms-layout{display:flex;gap:60px;max-width:1400px;margin:0 auto;align-items:flex-start}
.platforms-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:40px;flex:1}
.platform-item{cursor:pointer;transition:all 0.3s ease;text-align:center}
.platform-item:hover{transform:scale(1.05);opacity:1}
.platform-item:hover .platform-info h3{color:#ff6b35}
.platform-item.active{opacity:1;transform:scale(1.05)}
.platform-item.active .platform-info h3{color:#ff6b35}
.platform-item img{width:100%;height:auto;display:block;margin-bottom:15px;border-radius:8px}
.platform-info h3{color:#ffffff;font-size:1.4rem;font-weight:600;margin:0 0 8px 0}
.platform-info p{color:#cccccc;font-size:0.9rem;margin:0}
.fans-banners{display:flex;flex-direction:column;gap:20px;min-width:280px}
.fans-banner{background:linear-gradient(135deg,rgba(128,128,128,0.1),rgba(128,128,128,0.05));border-radius:12px;padding:10px;display:flex;align-items:center;justify-content:center;border:1px solid rgba(128,128,128,0.1);transition:all 0.3s ease;opacity:0.6}
.fans-banner:hover{background:linear-gradient(135deg,rgba(255,107,53,0.2),rgba(255,107,53,0.1));border:1px solid rgba(255,107,53,0.3);opacity:1;transform:scale(1.02)}
.fans-banner.active{background:linear-gradient(135deg,rgba(255,107,53,0.2),rgba(255,107,53,0.1));border:1px solid rgba(255,107,53,0.3);opacity:1;transform:scale(1.02)}
.fans-banner.active:hover{background:linear-gradient(135deg,rgba(255,107,53,0.25),rgba(255,107,53,0.15))}
.fans-banner.hover-highlight{background:linear-gradient(135deg,rgba(255,107,53,0.2),rgba(255,107,53,0.1));border:1px solid rgba(255,107,53,0.3);opacity:1;transform:scale(1.02)}
.banner-content{text-align:center}
.banner-content h4{color:#ffffff;font-size:0.7rem;font-weight:600;margin:0 0 5px 0}
.fans-count{color:#ff6b35;font-size:1.1rem;font-weight:700;margin:0}
.fans-label{color:#cccccc;font-size:0.4rem;margin:0}
.header.dark-bg {background: rgba(26, 26, 26, 0.95) !important;backdrop-filter: blur(10px);transition: background 0.3s ease;}
.header.dark-bg .nav-links a {color: #ffffff !important;}
.header.dark-bg .brand-logo {filter: brightness(0) invert(1);}
@media (max-width:1200px){.platforms-layout{flex-direction:column;gap:40px}
.fans-banners{flex-direction:row;justify-content:space-around;min-width:auto}
.fans-banner{flex:1;min-width:200px}
}@media (max-width:768px){.platforms-grid{grid-template-columns:1fr;gap:30px}
.fans-banners{flex-direction:column}
.fans-banner{min-width:auto}
.platforms-title h2{font-size:2rem}