/* General Layout */
body {
  font-family: Arial, sans-serif;
  background: linear-gradient(to bottom right, #ffe4ec, #fbcfe8);
  margin: 0;
  padding: 20px;
}

/* Headings */
h1 {
  text-align: center;
  color: #831843; /* deep rose */
}

h2, h3 {
  color: #9d174d;
}

/* Tabs Navigation */
.tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}

.tab-btn {
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.tab-btn.active {
  background: #f472b6; /* bright pink */
  color: white;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.tab-btn:not(.active) {
  background: white;
  color: #9d174d; /* darker pink text */
}

/* Search Bar */
.search-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  gap: 10px;
}

.search-box input {
  width: 80%;
  max-width: 400px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #f9a8d4;
  font-size: 16px;
}

.clear-btn {
  padding: 8px 12px;
  border: none;
  border-radius: 8px;
  background: #fbcfe8;
  color: #9d174d;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s;
}

.clear-btn:hover {
  background: #f9a8d4;
}

/* Card Grid */
.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  max-width: 1100px;
  margin: 0 auto;
}

/* Book/Series Card */
.card {
  background: #fff0f6; /* light pink tint */
  border-radius: 15px;
  over
