/* Book Page Specific Styles */
.reading-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.reading-header {
  text-align: center;
  margin-bottom: 50px;
}

.reading-header h1 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}

.reading-header p {
  color: #666;
  font-size: 1.1rem;
}

.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.year-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.year-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.year-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 3px solid #3498db;
  display: flex;
  align-items: center;
  gap: 10px;
}

.year-title::before {
  content: "📚";
  font-size: 1.5rem;
}

.book-count {
  background: #3498db;
  color: white;
  font-size: 0.9rem;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 500;
  margin-left: auto;
}

.book-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.book-item {
  padding: 8px 0;
  border-bottom: 1px solid #f8f9fa;
  transition: background-color 0.2s ease;
}

.book-item:last-child {
  border-bottom: none;
}

.book-item:hover {
  background-color: #f8f9fa;
  margin: 0 -15px;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 6px;
}

.book-title {
  font-weight: 600;
  color: #2c3e50;
  font-size: 1.4rem;
  line-height: 1.4;
}

.book-author {
  color: #7f8c8d;
  font-size: 1.2rem;
  margin-top: 2px;
}

/* Book Stats Section - Using same style as home page */
.stats-section {
  background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
  border-radius: 12px;
  margin-top: 40px;
}

.stats-section h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 15px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 50px auto 0;
  padding: 0 20px;
}

.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  background: white;
  color: #74b9ff;
  font-size: 2.4rem;
  font-weight: 700;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  line-height: 1;
}

.stat-number:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}

.stat-label {
  font-size: 1.4rem;
  font-weight: 600;
  opacity: 0.95;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .books-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .year-card {
    padding: 20px;
  }
  
  .reading-header h1 {
    font-size: 2rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .stat-number {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 1.2rem;
  }
}