/* Widget container */
.top-novels-widget {
  background: linear-gradient(180deg, #0a0f2c 0%, #0b0b12 100%);
  padding: 20px 22px;
  border-radius: 14px;
  box-shadow: 0 0 28px rgba(255, 215, 130, 0.12);
  font-family: Georgia, serif;
  color: #f5f5f5;
  border: 1px solid rgba(255, 215, 130, 0.15);
}

/* GOLD TITLE + ICONS */
.tnw-title {
  text-align: center;
  margin-bottom: 16px;
  font-size: 1.28rem;
  letter-spacing: 0.03em;
  color: #ffd27f;
  text-shadow: 0 0 12px rgba(255, 210, 127, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* Book icon images */
.tnw-book-icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  filter: drop-shadow(0 0 6px rgba(255, 210, 127, 0.7));
  transition: transform 0.25s ease, filter 0.25s ease;
}

/* Hover animation */
.tnw-book-icon:hover {
  transform: scale(1.15);
  filter: drop-shadow(0 0 10px rgba(255, 210, 127, 1));
}

/* Blue book — reduced glow */
.tnw-book-icon-blue {
  filter: drop-shadow(0 0 4px rgba(120, 180, 255, 0.55));
}

.tnw-book-icon-blue:hover {
  filter: drop-shadow(0 0 8px rgba(120, 180, 255, 0.9));
}

/* List container */
.tnw-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

/* Each list item */
.tnw-item {
  margin: 16px 0 20px 0;
  line-height: 1.35;
  color: #f5f5f5;
}

/* LINE 1 — Rank + Title */
.tnw-line1 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
}

/* Base rank style */
.tnw-rank {
  margin-right: 6px;
  font-weight: bold;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.25);
}

/* ⭐ GOLD for Rank #1 */
.tnw-item:nth-child(1) .tnw-rank {
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.9);
}

/* 🥈 SILVER for Rank #2 */
.tnw-item:nth-child(2) .tnw-rank {
  color: #c0c0c0;
  text-shadow: 0 0 10px rgba(192, 192, 192, 0.9);
}

/* 🥉 BRONZE for Rank #3 */
.tnw-item:nth-child(3) .tnw-rank {
  color: #cd7f32;
  text-shadow: 0 0 10px rgba(205, 127, 50, 0.9);
}

.tnw-title-text {
  color: #ffffff;
}

/* LINE 2 — Author + Sales */
.tnw-line2 {
  font-size: 0.9rem;
  color: #d0d0d0;
  margin-left: 22px;
  margin-bottom: 4px;
}

.tnw-author {
  margin-right: 6px;
}

.tnw-sales {
  color: #bbbbbb;
}

/* LINE 3 — Synopsis */
.tnw-line3 {
  font-size: 0.85rem;
  color: #e0e0e0;
  margin-left: 22px;
}

.tnw-synopsis-label {
  font-weight: bold;
  margin-right: 4px;
}

/* LINE 4 — Amazon Link */
.tnw-line4 {
  margin-left: 22px;
  margin-top: 4px;
}

.tnw-buy-link {
  font-size: 0.85rem;
  color: #7fb8ff;
  text-decoration: none;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.tnw-buy-link:hover {
  color: #a8d4ff;
  text-shadow: 0 0 6px rgba(120, 180, 255, 0.7);
}
