.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 60px 30px;
  border-radius: 12px;
  margin-bottom: 40px;
  text-align: center;
}

.hero h1 {
  font-size: 32px;
  margin-bottom: 20px;
  line-height: 1.4;
}

.hero .intro {
  font-size: 16px;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
}

section {
  margin-bottom: 50px;
}

h2 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #2c3e50;
  border-left: 4px solid #3498db;
  padding-left: 15px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.video-card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.video-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #2c3e50;
}

.video-card h3 a:hover {
  color: #3498db;
}

.video-card .meta {
  font-size: 13px;
  color: #7f8c8d;
  margin-bottom: 8px;
}

.video-card .genre {
  font-size: 14px;
  color: #e74c3c;
  margin-bottom: 10px;
}

.video-card .desc {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.video-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.video-item {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.video-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #2c3e50;
}

.video-item h3 a:hover {
  color: #3498db;
}

.video-item .item-meta {
  font-size: 13px;
  color: #7f8c8d;
  margin-bottom: 8px;
}

.video-item p {
  font-size: 14px;
  color: #555;
}

.more-links {
  text-align: center;
  margin-top: 30px;
}

.more-links a {
  display: inline-block;
  padding: 12px 30px;
  background: #3498db;
  color: white;
  border-radius: 25px;
  font-size: 16px;
  transition: background 0.3s;
}

.more-links a:hover {
  background: #2980b9;
}

.page-header {
  background: white;
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.page-header h1 {
  font-size: 32px;
  color: #2c3e50;
  margin-bottom: 15px;
}

.page-header .page-intro {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.list-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.list-card {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s;
}

.list-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.list-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #2c3e50;
}

.list-card h3 a:hover {
  color: #3498db;
}

.list-card .meta {
  font-size: 14px;
  color: #7f8c8d;
  margin-bottom: 10px;
}

.list-card .oneline {
  font-size: 15px;
  color: #e74c3c;
  margin-bottom: 10px;
  font-weight: 500;
}

.list-card .summary {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

.list-card.type-daquan .card-header {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.list-card.type-daquan .category-tag,
.list-card.type-daquan .region-tag {
  display: inline-block;
  padding: 4px 12px;
  background: #ecf0f1;
  color: #2c3e50;
  border-radius: 12px;
  font-size: 12px;
}

.list-card.type-top {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.list-card.type-top .rank-number {
  font-size: 48px;
  font-weight: bold;
  color: #3498db;
  min-width: 60px;
}

.list-card.type-top .card-content {
  flex: 1;
}

.list-card.type-top .tags {
  font-size: 13px;
  color: #95a5a6;
  margin-top: 8px;
}

.list-card.type-topic .topic-badge {
  display: inline-block;
  padding: 6px 16px;
  background: #9b59b6;
  color: white;
  border-radius: 15px;
  font-size: 13px;
  margin-bottom: 12px;
}

.list-card.type-topic .review-short {
  font-size: 14px;
  color: #7f8c8d;
  line-height: 1.6;
  margin-top: 10px;
}

.list-card.type-latest .date-label {
  display: inline-block;
  padding: 4px 12px;
  background: #27ae60;
  color: white;
  border-radius: 10px;
  font-size: 12px;
  margin-bottom: 10px;
}

.detail-page {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 30px;
  padding-top: 30px;
}

.detail-content {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.detail-content header h1 {
  font-size: 32px;
  color: #2c3e50;
  margin-bottom: 30px;
  border-bottom: 3px solid #3498db;
  padding-bottom: 15px;
}

.basic-info {
  margin-bottom: 30px;
}

.basic-info .info-row {
  padding: 10px 0;
  border-bottom: 1px solid #ecf0f1;
  font-size: 15px;
}

.basic-info .label {
  font-weight: bold;
  color: #7f8c8d;
  margin-right: 10px;
}

.detail-content section {
  margin-bottom: 30px;
}

.detail-content section h2 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #2c3e50;
}

.detail-content section p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

.related-section {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  height: fit-content;
}

.related-section h2 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #2c3e50;
  border-left: 4px solid #e74c3c;
  padding-left: 12px;
}

.related-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.related-card {
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: background 0.3s;
}

.related-card:hover {
  background: #e9ecef;
}

.related-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #2c3e50;
}

.related-card h3 a:hover {
  color: #3498db;
}

.related-card .meta {
  font-size: 12px;
  color: #7f8c8d;
  margin-bottom: 6px;
}

.related-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

footer {
  background: #2c3e50;
  color: white;
  text-align: center;
  padding: 30px 20px;
  margin-top: 60px;
}

footer p {
  font-size: 14px;
}

@media (max-width: 768px) {
  .container {
    padding: 15px;
  }

  .hero {
    padding: 40px 20px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero .intro {
    font-size: 14px;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .detail-page {
    grid-template-columns: 1fr;
  }

  .related-section {
    order: 2;
  }

  .page-header {
    padding: 25px 20px;
  }

  .page-header h1 {
    font-size: 24px;
  }

  .detail-content {
    padding: 25px 20px;
  }

  .detail-content header h1 {
    font-size: 24px;
  }

  .list-card.type-top {
    flex-direction: column;
  }

  .list-card.type-top .rank-number {
    font-size: 32px;
  }
}