/* 
 * 大香蕉影视 - 全局样式表 
 * 风格：淡黑金 (Light Black Gold)
 */

:root {
  --primary-gold: #d4af37;
  --bright-gold: #ffd700;
  --dark-gold: #b8860b;
  --bg-black: #0f0f0f;
  --card-bg: #1a1a1a;
  --text-white: #f5f5f5;
  --text-gray: #a0a0a0;
  --accent-gold: linear-gradient(135deg, #d4af37 0%, #f9d976 50%, #b8860b 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-black);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* 导航栏 */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(15, 15, 15, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--accent-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--primary-gold);
}

/* 全局版芯 */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

/* 按钮样式 */
.btn-gold {
  background: var(--accent-gold);
  color: #000;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* 章节标题 */
.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: var(--accent-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title p {
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* 页脚 */
footer {
  background: #050505;
  padding: 5rem 5% 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  margin-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-info h3 {
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a:hover {
  padding-left: 5px;
  color: var(--primary-gold);
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-gray);
  font-size: 0.9rem;
}

/* 响应式适配 */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
}
