/* FContest Pro styles */
.fcp-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 12px;
}

.fcp-card {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
}

.fcp-thumb { aspect-ratio: 4 / 3; background: #f8fafc; position: relative; overflow: hidden; }
.fcp-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fcp-noimg { display:flex; align-items:center; justify-content:center; color:#64748b; height:100%; }

.fcp-meta { padding: 10px 12px 0 12px; font-size: 13px; color: #334155; }
.fcp-rating { padding: 10px 12px 12px 12px; margin-top: auto; }
.fcp-stars { user-select: none; font-size: 20px; line-height: 1; }
.fcp-star { cursor: pointer; color: #cbd5e1; margin-right: 2px; display:inline-block; transition: transform .08s ease; }
.fcp-star:hover { transform: scale(1.2) translateY(-1px); }
.fcp-star.on { color: #f59e0b; }
.fcp-stats { margin-top: 6px; font-size: 12px; color: #475569; }

/* Lightbox */
.fcp-lightbox-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.8); display:none; align-items:center; justify-content:center; z-index: 99999; }
.fcp-lightbox-overlay img { max-width: 90vw; max-height: 90vh; box-shadow: 0 10px 30px rgba(0,0,0,.5); border-radius: 8px; }
.fcp-lightbox-overlay.show { display: flex; }

/* Pagination */
.fcp-pagination{ margin: 12px 0; padding: 8px 10px; display:flex; align-items:center; justify-content:space-between; gap:10px; background:#f8fafc; border:1px solid #e2e8f0; border-radius:10px; }
.fcp-pagi-left .button{ margin-right: 6px; }
.fcp-pagi-status{ margin: 0 8px; font-weight: 600; }
.fcp-pagi-pp select{ min-width: 80px; }

.fcp-top-list { font-size: 14px; }
