/* UI Style: 0, Layout: G */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.main-title {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 8px;
}

.site-intro,
.hot-section,
.list-entrance,
.latest-section {
  margin-bottom: 3rem;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.site-intro h2,
.hot-section h2,
.list-entrance h2,
.latest-section h2 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  border-left: 4px solid #667eea;
  padding-left: 1rem;
}

.site-intro p {
  color: #555;
  line-height: 1.8;
}

.section-intro {
  color: #666;
  margin-bottom: 1.5rem;
}

.section-intro a {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
}

.section-intro a:hover {
  text-decoration: underline;
}

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

.video-card {
  background: #fafafa;
  padding: 1.5rem;
  border-radius: 6px;
  transition: all 0.3s;
  border: 1px solid #e0e0e0;
}

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

.video-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.video-card h3 a {
  color: #2c3e50;
  text-decoration: none;
}

.video-card h3 a:hover {
  color: #667eea;
}

.card-meta {
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 0.8rem;
}

.card-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

.entrance-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.entrance-card {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s;
}

.entrance-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.entrance-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.entrance-card h3 a {
  color: white;
  text-decoration: none;
}

.entrance-card p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.detail-page .container {
  max-width: 900px;
}

.video-detail {
  background: white;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.detail-title {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid #667eea;
}

.video-detail section {
  margin-bottom: 2rem;
}

.video-detail h2 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  border-left: 4px solid #667eea;
  padding-left: 1rem;
}

.info-list {
  list-style: none;
  padding: 0;
}

.info-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
  color: #555;
}

.info-list li strong {
  color: #2c3e50;
  min-width: 80px;
  display: inline-block;
}

.one-line {
  background: #f8f9fa;
  padding: 1rem;
  border-left: 4px solid #667eea;
  color: #333;
  font-size: 1.05rem;
  line-height: 1.8;
}

.summary-text,
.review-text {
  color: #555;
  line-height: 1.8;
  text-align: justify;
}

.related-list {
  display: grid;
  gap: 1rem;
}

.related-item {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 6px;
  border-left: 3px solid #667eea;
}

.related-item h4 {
  margin-bottom: 0.5rem;
}

.related-item h4 a {
  color: #2c3e50;
  text-decoration: none;
}

.related-item h4 a:hover {
  color: #667eea;
}

.related-meta {
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 0.5rem;
}

.related-desc {
  font-size: 0.9rem;
  color: #666;
}

.list-page h1 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 8px;
  text-align: center;
}

.page-intro {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  color: #555;
  line-height: 1.8;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.list-container {
  display: grid;
  gap: 1rem;
}

.list-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  display: flex;
  gap: 1rem;
  transition: all 0.3s;
}

.list-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transform: translateX(8px);
}

.rank-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.1rem;
}

.card-content {
  flex: 1;
}

.site-footer {
  background: #2c3e50;
  color: white;
  padding: 2rem 1rem;
  text-align: center;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

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

  .main-title {
    font-size: 1.5rem;
    padding: 1.5rem 1rem;
  }

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

  .entrance-cards {
    grid-template-columns: 1fr;
  }

  .video-detail {
    padding: 1.5rem;
  }

  .detail-title {
    font-size: 1.5rem;
  }
}