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

.hero { text-align: center; padding: 60px 20px; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: #fff; margin: 0 -20px 40px -20px; }
.hero h1 { font-size: 32px; margin-bottom: 20px; }
.hero .intro { font-size: 16px; line-height: 1.8; max-width: 800px; margin: 0 auto; }

.section { margin-bottom: 60px; background: #fff; padding: 40px; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.section h2 { font-size: 28px; margin-bottom: 30px; padding-bottom: 10px; border-bottom: 3px solid #667eea; }

.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.card { background: #f9f9f9; padding: 20px; border-radius: 6px; transition: transform 0.3s, box-shadow 0.3s; }
.card:hover { transform: translateY(-5px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.card h3 { font-size: 18px; margin-bottom: 10px; color: #667eea; }
.card .meta { font-size: 14px; color: #666; margin-bottom: 8px; }
.card .desc { font-size: 14px; color: #555; line-height: 1.6; }

.more-links { margin-top: 30px; text-align: center; font-size: 16px; }
.more-links a { color: #667eea; margin: 0 10px; font-weight: bold; }
.more-links a:hover { text-decoration: underline; }

.list-header { text-align: center; padding: 40px 20px; background: #fff; border-radius: 8px; margin-bottom: 30px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.list-header h1 { font-size: 32px; margin-bottom: 15px; color: #333; }
.list-header p { font-size: 16px; color: #666; line-height: 1.8; }

.list-content { background: #fff; border-radius: 8px; padding: 20px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.list-item { padding: 25px; border-bottom: 1px solid #eee; display: flex; align-items: flex-start; transition: background 0.3s; }
.list-item:last-child { border-bottom: none; }
.list-item:hover { background: #f9f9f9; }
.list-item.with-rank { padding-left: 15px; }
.list-item .rank { font-size: 24px; font-weight: bold; color: #667eea; margin-right: 20px; min-width: 40px; }
.list-item .item-main { flex: 1; }
.list-item h3 { font-size: 20px; margin-bottom: 8px; color: #333; }
.list-item h3 a { color: #667eea; }
.list-item h3 a:hover { text-decoration: underline; }
.list-item .meta { font-size: 14px; color: #666; margin-bottom: 8px; }
.list-item .desc { font-size: 14px; color: #555; line-height: 1.6; }

.detail { background: #fff; border-radius: 8px; padding: 40px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.detail h1 { font-size: 36px; margin-bottom: 30px; color: #333; }
.detail .info-box { background: #f9f9f9; padding: 20px; border-radius: 6px; margin-bottom: 30px; }
.detail .info-box p { margin-bottom: 10px; font-size: 15px; }
.detail .info-box strong { color: #667eea; margin-right: 10px; }
.detail .section { padding: 0; margin-bottom: 40px; box-shadow: none; background: transparent; }
.detail .section h2 { font-size: 24px; margin-bottom: 15px; }
.detail .section p { font-size: 16px; line-height: 1.8; color: #555; }
.detail .highlight { font-size: 18px; color: #667eea; font-weight: bold; font-style: italic; }
.detail .review { background: #f0f7ff; padding: 20px; border-left: 4px solid #667eea; font-style: italic; }

footer { text-align: center; padding: 40px 20px; color: #999; font-size: 14px; }

@media (max-width: 768px) {
  .hero h1 { font-size: 24px; }
  .hero .intro { font-size: 14px; }
  .section { padding: 20px; }
  .section h2 { font-size: 22px; }
  .card-grid { grid-template-columns: 1fr; }
  .detail { padding: 20px; }
  .detail h1 { font-size: 28px; }
}