body.ui-style-3 {
  font-size: 16px;
  background: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
}

.hero {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  margin-bottom: 2.5rem;
  text-align: center;
}

.hero h1 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.hero .intro {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
}

.intro-section {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  margin-bottom: 2.5rem;
}

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

.intro-section p {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  text-indent: 2em;
}

section {
  margin-bottom: 3rem;
}

section h2 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  border-left: 5px solid #667eea;
  padding-left: 1rem;
}

.section-desc {
  color: #666;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

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

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

.card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 3px solid #667eea;
}

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

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.card h3 a {
  color: inherit;
}

.card h3 a:hover {
  color: #667eea;
  text-decoration: none;
}

.card .meta {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 0.5rem;
}

.card .genre {
  font-size: 0.9rem;
  color: #667eea;
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.card .oneline {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.list-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

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

.list-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.list-item h3 a {
  color: inherit;
}

.list-item h3 a:hover {
  color: #667eea;
  text-decoration: none;
}

.list-item .meta {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 0.8rem;
}

.list-item .summary {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
}

.topic-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.topic-tag {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 25px;
  font-size: 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.topic-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
  text-decoration: none;
}

.list-all {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.list-item-full {
  display: flex;
  align-items: flex-start;
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}

.list-item-full:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.list-item-full .item-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: #667eea;
  min-width: 60px;
  text-align: center;
  margin-right: 1.5rem;
}

.list-item-full .item-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.list-item-full .item-content h3 a {
  color: inherit;
}

.list-item-full .item-content h3 a:hover {
  color: #667eea;
  text-decoration: none;
}

.list-item-full .meta,
.list-item-full .tags {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 0.5rem;
}

.list-item-full .summary {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.rank-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.rank-item {
  display: flex;
  align-items: flex-start;
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}

.rank-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.rank-number {
  font-size: 2rem;
  font-weight: bold;
  min-width: 60px;
  text-align: center;
  margin-right: 1.5rem;
}

.rank-number.rank-top {
  color: #f39c12;
  text-shadow: 2px 2px 4px rgba(243, 156, 18, 0.3);
}

.rank-number.rank-normal {
  color: #667eea;
}

.rank-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.rank-content h3 a {
  color: inherit;
}

.rank-content h3 a:hover {
  color: #667eea;
  text-decoration: none;
}

.rank-content .meta {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 0.5rem;
}

.rank-content .genre {
  font-size: 0.9rem;
  color: #667eea;
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.rank-content .oneline {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.rank-content .review {
  font-size: 0.95rem;
  color: #777;
  line-height: 1.6;
  font-style: italic;
  border-left: 3px solid #667eea;
  padding-left: 1rem;
  margin-top: 0.8rem;
}

.topic-group {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  margin-bottom: 2rem;
}

.topic-title {
  font-size: 1.6rem;
  color: #2c3e50;
  margin-bottom: 0.8rem;
  border-left: 5px solid #667eea;
  padding-left: 1rem;
}

.topic-desc {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.topic-card {
  padding: 1.2rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.topic-card:hover {
  border-color: #667eea;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

.topic-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.topic-card h3 a {
  color: inherit;
}

.topic-card h3 a:hover {
  color: #667eea;
  text-decoration: none;
}

.topic-card .meta {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 0.6rem;
}

.topic-card .oneline {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}

.latest-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.latest-item {
  display: flex;
  align-items: flex-start;
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}

.latest-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.item-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
  margin-right: 1.5rem;
}

.item-date .year {
  font-size: 1.8rem;
  font-weight: bold;
  color: #667eea;
  line-height: 1.2;
}

.item-date .badge {
  font-size: 0.75rem;
  color: white;
  background: #667eea;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  margin-top: 0.5rem;
}

.item-body h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.item-body h3 a {
  color: inherit;
}

.item-body h3 a:hover {
  color: #667eea;
  text-decoration: none;
}

.item-body .meta,
.item-body .tags {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 0.5rem;
}

.item-body .summary {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

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

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

.detail-page section {
  margin-bottom: 2.5rem;
}

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

.detail-info {
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 8px;
}

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

.info-item {
  font-size: 1rem;
  color: #555;
}

.info-item .label {
  font-weight: bold;
  color: #333;
}

.info-item .value {
  color: #555;
}

.highlight {
  font-size: 1.2rem;
  color: #667eea;
  font-weight: 500;
  line-height: 1.8;
  padding: 1rem;
  background: #f0f4ff;
  border-radius: 8px;
  border-left: 4px solid #667eea;
}

.summary-text {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.9;
  text-indent: 2em;
}

.review-text {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  font-style: italic;
  padding: 1rem;
  background: #f9f9f9;
  border-left: 4px solid #667eea;
  border-radius: 4px;
}

.related-intro {
  color: #666;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

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

.related-card {
  padding: 1.2rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.related-card:hover {
  border-color: #667eea;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

.related-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.related-card h3 a {
  color: inherit;
}

.related-card h3 a:hover {
  color: #667eea;
  text-decoration: none;
}

.related-card .meta {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 0.6rem;
}

.related-card .oneline {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .hero .intro {
    font-size: 1rem;
  }

  section h2 {
    font-size: 1.4rem;
  }

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

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

  .detail-page {
    padding: 1.5rem;
  }

  .list-item-full {
    flex-direction: column;
  }

  .list-item-full .item-number {
    margin-bottom: 0.5rem;
  }

  .rank-item {
    flex-direction: column;
    align-items: center;
  }

  .rank-number {
    margin-bottom: 0.5rem;
  }

  .latest-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .item-date {
    flex-direction: row;
    gap: 1rem;
    margin-bottom: 1rem;
  }

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

  .related-grid,
  .topic-cards {
    grid-template-columns: 1fr;
  }
}
