/* --- WIKI HUB STYLING --- */

/* Control Panel */
.wiki-controls {
  background: #fff; padding: 20px; border-radius: 16px; border-bottom: 5px solid #bdc3c7;
  margin-bottom: 30px;
}

/* Tabs */
.wiki-tabs {
  display: flex; gap: 10px; overflow-x: auto; padding-bottom: 10px; margin-bottom: 15px;
}
.wiki-tab {
  padding: 10px 20px; border: 2px solid #eee; border-radius: 12px; background: #f9f9f9;
  cursor: pointer; font-family: 'Fredoka One'; color: #7f8c8d; white-space: nowrap; transition: 0.2s;
}
.wiki-tab:hover { background: #eee; }
.wiki-tab.active {
  background: #2c3e50; color: white; border-color: #2c3e50; transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(44, 62, 80, 0.3);
}

/* Search Bar */
.wiki-search-row { display: flex; gap: 15px; }
.small-select { max-width: 180px; }

/* GRID LAYOUT */
.wiki-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

/* CARD DESIGN */
.wiki-card {
  background: #fff; border-radius: 12px; overflow: hidden;
  border: 2px solid #ecf0f1; border-bottom: 5px solid #bdc3c7;
  transition: transform 0.2s; position: relative; display: flex; flex-direction: column;
}
.wiki-card:hover { transform: translateY(-5px); border-color: #bdc3c7; box-shadow: 0 10px 20px rgba(0,0,0,0.05); }

/* Card Header (Rarity Bar) */
.wc-header {
  padding: 8px; text-align: center; color: white; font-weight: 900; font-size: 12px; text-transform: uppercase; letter-spacing: 1px;
}

/* Rarity Colors (Important for Visuals) */
.bg-Common { background: #95a5a6; }
.bg-Uncommon { background: #2ecc71; }
.bg-Rare { background: #3498db; }
.bg-Epic { background: #9b59b6; }
.bg-Legendary { background: #f1c40f; color: #333; }
.bg-Mythical { background: #8e44ad; }
.bg-Divine { background: #e67e22; }
.bg-Prismatic { background: linear-gradient(45deg, #3498db, #e74c3c); }
.bg-Transcendent { background: linear-gradient(45deg, #2ecc71, #f1c40f); color: #333; }
.bg-Godly { background: #e74c3c; }
.bg-Event { background: #ff7979; }

/* Card Body */
.wc-body { padding: 15px; flex: 1; display: flex; flex-direction: column; }
.wc-title { font-family: 'Fredoka One'; font-size: 18px; color: #2c3e50; margin: 0 0 10px 0; }

.wc-stat {
  display: flex; justify-content: space-between; font-size: 13px;
  padding: 6px 0; border-bottom: 1px dashed #eee; color: #555;
}
.wc-stat strong { color: #2c3e50; }

.wc-desc {
  margin-top: auto; /* Pushes to bottom */
  padding-top: 10px; font-size: 12px; color: #7f8c8d; 
  line-height: 1.4; background: #f8f9fa; padding: 10px; border-radius: 8px; margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .wiki-search-row { flex-direction: column; }
  .small-select { max-width: 100%; }
}