/* 页面基础样式 */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  background-color: #f5f5f5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
  position: relative;
  min-height: 100vh;
}

h1 {
  text-align: center;
  color: #333;
}

/* 字母导航样式 - 右侧固定定位 */
.alphabet-nav {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 100;
}

.alphabet-nav a {
  padding: 4px;
  text-decoration: none;
  font-size: 14px;
  width: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.alphabet-nav a:hover {
  transform: scale(1.1);
}

/* 美剧分类样式 */
.series-section {
  margin: 30px 0;
}

.series-section h2 {
  color: #007bff;
  border-bottom: 1px solid #007bff;
  padding-bottom: 4px;
}

/* 美剧列表样式 */
.series-list {
  list-style-type: none;
  padding: 0;
}

.series-list li {
  margin: 6px 0;
  padding: 6px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 12px;
}

.series-list a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.series-list a:hover {
  text-decoration: underline;
}