/* =====================================================
   Prime-Children page custom styles
   Author: Guy Bracha
   ===================================================== */

/* כלליות */
body {
  background: radial-gradient(circle at top, #101820, #0b0b0b);
  font-family: "Inter", sans-serif;
}

header h1 {
  font-family: "Bangers", cursive;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(255, 204, 0, 0.4);
}

header p {
  font-size: 1.1rem;
}

/* סקשן הפילטרים */
#prime-lineages {
  background: rgba(20, 20, 20, 0.7);
  border: 1px solid #222;
  border-radius: 1rem;
  padding: 1rem 1.5rem;
}

#prime-lineages label {
  color: #aaa;
  font-weight: 600;
}

#prime-lineages select,
#prime-lineages input {
  border-radius: 0.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

#prime-lineages select:focus,
#prime-lineages input:focus {
  border-color: #ffc107;
  box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
}

/* גריד הכרטיסים */
#pc-grid .pc-card {
  background: linear-gradient(160deg, #1a1a1a, #111);
  border: 1px solid #333;
  border-radius: 1rem;
  padding: 1.2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#pc-grid .pc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(255, 193, 7, 0.25);
}

.pc-card h5 {
  font-weight: 700;
}

/* תגיות */
.pc-card .badge {
  font-size: 0.75rem;
  padding: 0.35em 0.6em;
  border-radius: 0.5rem;
}

/* כפתור פרופיל */
.pc-card .btn {
  border-radius: 0.5rem;
  font-weight: 600;
  border: 1px solid #ffc107;
  color: #ffc107;
  transition: all 0.2s ease;
}

.pc-card .btn:hover {
  background: #ffc107;
  color: #111;
}

/* === HERO / VILLAIN הבדלה בצבעים === */
.pc-card.hero {
  border: 1px solid rgba(40, 167, 69, 0.6); /* ירוק */
  box-shadow: 0 0 12px rgba(40, 167, 69, 0.25);
}

.pc-card.hero:hover {
  box-shadow: 0 0 20px rgba(40, 167, 69, 0.4);
}

.pc-card.villain {
  border: 1px solid rgba(220, 53, 69, 0.6); /* אדום */
  box-shadow: 0 0 12px rgba(220, 53, 69, 0.25);
}

.pc-card.villain:hover {
  box-shadow: 0 0 20px rgba(220, 53, 69, 0.4);
}

/* מודאל */
#pcModal .modal-content {
  background: #121212;
  border: 1px solid #333;
  border-radius: 1rem;
}

#pcModal h5 {
  font-family: "Bangers", cursive;
  color: #ffc107;
  text-shadow: 0 0 6px rgba(255, 193, 7, 0.5);
}
