/* ── Fan Photos — masonry grid ───────────────────────────────────────────────── */
.fp-masonry {
  column-count: 4;
  column-gap: 12px;
}
@media (max-width: 992px) {
  .fp-masonry {
    column-count: 3;
  }
}
@media (max-width: 576px) {
  .fp-masonry {
    column-count: 2;
  }
}

.fp-photo-card {
  break-inside: avoid;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition:
    transform 0.18s,
    box-shadow 0.18s,
    border-color 0.18s;
}
.fp-photo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5);
  border-color: #f5c518;
}
.fp-thumb-wrap {
  position: relative;
  overflow: hidden;
}
.fp-photo-card img.fp-thumb {
  width: 100%;
  height: auto;
  display: block;
}

.fp-card-caption {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  padding: 6px 10px 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fp-uploader {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.fp-uploader-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.fp-uploader-name {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}
.fp-uploader-date {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.28);
  white-space: nowrap;
  flex-shrink: 0;
}
.fp-view-count {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.28);
  white-space: nowrap;
  flex-shrink: 0;
}
.fp-uploader-link {
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  color: inherit;
  flex: 1;
  min-width: 0;
  transition: opacity 0.15s;
}
.fp-uploader-link:hover {
  opacity: 0.8;
}
.fp-uploader-link:hover .fp-uploader-name {
  color: #f5c518;
}

/* Delete button — hover-only */
.fp-delete-btn {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(231, 76, 60, 0.5);
  color: #e74c3c;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.72rem;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.15s,
    background 0.15s,
    border-color 0.15s;
}
.fp-photo-card:hover .fp-delete-btn {
  opacity: 1;
  pointer-events: auto;
}
.fp-delete-btn:hover {
  background: rgba(231, 76, 60, 0.3);
  border-color: #e74c3c;
}

/* ── Like button on card ─────────────────────────────────────────────────────── */
.fp-like-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 2px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  transition: color 0.15s;
  line-height: 1;
}
.fp-like-btn:hover {
  color: #f5c518;
}
.fp-like-btn.liked {
  color: #e74c3c;
}
.fp-like-btn.liked:hover {
  color: #ff6b6b;
}
.fp-like-count {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.68rem;
  min-width: 8px;
}
@keyframes fp-heart-pop {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.65);
  }
  70% {
    transform: scale(0.88);
  }
  100% {
    transform: scale(1);
  }
}
.fp-like-pop {
  animation: fp-heart-pop 0.3s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

/* ── Like button in lightbox ─────────────────────────────────────────────────── */
.fp-lb-like-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 24px;
  border-radius: 999px;
  margin-top: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  transition:
    background 0.15s,
    color 0.15s,
    border-color 0.15s;
  line-height: 1;
}
.fp-lb-like-btn i {
  font-size: 0.7em;
  transform: translateY(-1px);
}
.fp-lb-like-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.fp-lb-like-btn.liked {
  background: rgba(231, 76, 60, 0.15);
  border-color: rgba(231, 76, 60, 0.5);
  color: #e74c3c;
}
.fp-lb-like-btn.liked:hover {
  background: rgba(231, 76, 60, 0.25);
}
.fp-lb-like-btn i {
  font-size: 1rem;
}
.fp-lb-like-count {
  opacity: 0.75;
  font-size: 0.78rem;
}

/* Tabs */
.fp-tabs {
  display: flex;
  gap: 6px;
  align-items: center;
  align-self: center;
  margin-bottom: 0;
}
.fp-ctrl-sep {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}
.fp-tab-btn {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s,
    border-color 0.15s;
}
.fp-tab-btn.active {
  background: rgba(245, 197, 24, 0.12);
  color: #f5c518;
  border-color: rgba(245, 197, 24, 0.35);
}
.fp-tab-btn:hover:not(.active) {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}
.fp-tab-btn.fav-tab.active {
  background: rgba(231, 76, 60, 0.12);
  color: #e74c3c;
  border-color: rgba(231, 76, 60, 0.35);
}
.fp-tab-btn.fav-tab:hover:not(.active) {
  color: rgba(231, 76, 60, 0.8);
}

/* Upload panel */
.fp-upload-panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 28px;
}
.fp-upload-zone {
  border: 2px dashed rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 36px 20px;
  text-align: center;
  cursor: pointer;
  transition:
    border-color 0.18s,
    background 0.18s;
  background: rgba(255, 255, 255, 0.02);
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 14px;
}
.fp-upload-zone.drag-over {
  border-color: #f5c518;
  background: rgba(245, 197, 24, 0.05);
  color: #f5c518;
}
.fp-upload-note {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.28);
  margin: -8px 0 14px;
  text-align: center;
  line-height: 1.5;
}
.fp-moderation-notice {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.22);
  text-align: center;
  margin: 0 0 14px;
  line-height: 1.5;
}
.fp-preview-wrap {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 14px;
  display: none;
}
.fp-preview-img {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.3);
  display: block;
}
.fp-progress-bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 12px;
  display: none;
}
.fp-progress-fill {
  height: 100%;
  background: #f5c518;
  width: 0%;
  transition: width 0.25s;
}
.fp-char-count {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
  text-align: right;
  margin-top: 4px;
}
.fp-upload-error {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.8rem;
  color: #e74c3c;
  margin-top: 8px;
}

/* Success toast */
.fp-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 20000;
  background: rgba(46, 204, 113, 0.92);
  color: #fff;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 24px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.25s,
    transform 0.25s;
}
.fp-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Lightbox */
.fp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.93);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
}
.fp-lightbox.open {
  display: flex;
}
.fp-lightbox-img {
  max-width: 92vw;
  max-height: 76vh;
  object-fit: contain;
  border-radius: 6px;
  display: block;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.fp-lightbox-img.loaded {
  opacity: 1;
}
.fp-lightbox-counter {
  position: fixed;
  top: 20px;
  left: 22px;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  z-index: 10001;
  pointer-events: none;
}
.fp-lightbox-meta {
  margin-top: 14px;
  text-align: center;
  font-family: "Josefin Sans", sans-serif;
}
.fp-lightbox-caption {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 6px;
}
.fp-lightbox-user {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.fp-lightbox-user img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
}
.fp-lightbox-close {
  position: fixed;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10001;
  transition: color 0.15s;
}
.fp-lightbox-close:hover {
  color: #fff;
}
.fp-lightbox-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  z-index: 10001;
  transition:
    background 0.15s,
    color 0.15s;
}
.fp-lightbox-arrow:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.fp-lightbox-arrow.prev {
  left: 14px;
}
.fp-lightbox-arrow.next {
  right: 14px;
}

/* Two-step delete confirm */
.fp-lightbox-delete {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 18px;
  border-radius: 7px;
  border: 1px solid rgba(231, 76, 60, 0.45);
  background: rgba(231, 76, 60, 0.12);
  color: #e74c3c;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.15s,
    border-color 0.15s;
}
.fp-lightbox-delete:hover {
  background: rgba(231, 76, 60, 0.25);
  border-color: #e74c3c;
}
.fp-confirm-row {
  margin-top: 14px;
  display: none;
  align-items: center;
  gap: 10px;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}
.fp-confirm-row.show {
  display: flex;
}
.fp-confirm-yes {
  padding: 6px 14px;
  border-radius: 6px;
  border: 1px solid rgba(231, 76, 60, 0.5);
  background: rgba(231, 76, 60, 0.15);
  color: #e74c3c;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}
.fp-confirm-yes:hover {
  background: rgba(231, 76, 60, 0.3);
}
.fp-confirm-no {
  padding: 6px 14px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.5);
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.78rem;
  cursor: pointer;
  transition: background 0.15s;
}
.fp-confirm-no:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

/* Report link */
/* ── Lightbox comments ───────────────────────────────────────────────────────── */
.fp-lb-comments {
  margin-top: 18px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}
.fp-lb-comments-list {
  max-height: 200px;
  overflow-y: auto;
  margin-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
}
.fp-lb-comment {
  display: flex;
  gap: 8px;
  padding: 6px 0;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.fp-lb-comment:last-child {
  border-bottom: none;
}
.fp-lb-comment-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.fp-lb-comment-content {
  flex: 1;
  min-width: 0;
}
.fp-lb-comment-header {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.fp-lb-comment-name {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}
.fp-lb-comment-time {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.25);
}
.fp-lb-comment-body {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
  word-break: break-word;
}
.fp-lb-comment-delete {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.15);
  font-size: 0.62rem;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  flex-shrink: 0;
  transition: color 0.15s;
}
.fp-lb-comment-delete:hover {
  color: #e74c3c;
}
.fp-lb-comment-form {
  display: flex;
  gap: 6px;
  align-items: flex-end;
  padding: 4px 0;
}
.fp-lb-comment-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.78rem;
  resize: none;
  outline: none;
  transition: border-color 0.15s;
}
.fp-lb-comment-input:focus {
  border-color: rgba(245, 197, 24, 0.4);
}
.fp-lb-comment-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}
.fp-lb-comment-submit {
  background: #f5c518;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #111;
  font-size: 0.72rem;
  flex-shrink: 0;
  transition:
    background 0.15s,
    opacity 0.15s;
}
.fp-lb-comment-submit:hover {
  background: #ffd740;
}
.fp-lb-comment-submit:disabled {
  opacity: 0.4;
  cursor: default;
}
.fp-lb-comment-signin {
  text-align: center;
  padding: 8px 0;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
}
.fp-lb-comment-empty {
  text-align: center;
  padding: 10px 0;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.2);
}

.fp-lightbox-report {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.2);
  text-decoration: none;
  margin-top: 10px;
  display: block;
  text-align: center;
  transition: color 0.15s;
}
.fp-lightbox-report:hover {
  color: rgba(255, 255, 255, 0.5);
}

/* Page header / buttons */
.fp-page-title {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  text-align: center;
}
.fp-total-badge {
  display: inline-block;
  font-size: 0.72rem;
  background: rgba(245, 197, 24, 0.15);
  color: #f5c518;
  border-radius: 20px;
  padding: 2px 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.fp-share-btn {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 18px 6px;
  border-radius: 20px;
  background: #f5c518;
  color: #111;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}
.fp-share-btn i {
  font-size: 0.7em;
  transform: translateY(-1px);
}
.fp-share-btn:hover {
  opacity: 0.88;
}
.fp-share-banner {
  margin-bottom: 16px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(245, 197, 24, 0.18);
  background: rgba(245, 197, 24, 0.05);
}
.fp-share-banner-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
}
.fp-share-banner-inner > i {
  font-size: 1.4rem;
  color: rgba(245, 197, 24, 0.5);
  flex-shrink: 0;
}
.fp-share-banner-text {
  flex: 1;
  min-width: 0;
  font-family: "Josefin Sans", sans-serif;
}
.fp-share-banner-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}
.fp-share-banner-text span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}
.fp-signin-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  background: rgba(245, 197, 24, 0.07);
  border: 1px solid rgba(245, 197, 24, 0.18);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 24px;
  font-family: "Josefin Sans", sans-serif;
}
.fp-signin-banner i {
  font-size: 1.8rem;
  color: rgba(245, 197, 24, 0.6);
  flex-shrink: 0;
}
.fp-signin-banner strong {
  display: block;
  color: #fff;
  font-size: 0.9rem;
}
.fp-signin-banner p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
  margin: 2px 0 0;
}
.fp-signin-cta {
  margin-left: auto;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 7px 18px;
  border-radius: 999px;
  background: #f5c518;
  color: #111;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s;
}
.fp-signin-cta:hover {
  opacity: 0.88;
}
.fp-caption-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  padding: 10px 12px;
  color: #fff;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.85rem;
  resize: vertical;
  min-height: 70px;
  outline: none;
  transition: border-color 0.15s;
  box-sizing: border-box;
}
.fp-caption-input:focus {
  border-color: rgba(255, 255, 255, 0.3);
}
.fp-caption-input::placeholder {
  color: rgba(255, 255, 255, 0.28);
}
.fp-upload-submit-btn {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 9px 22px;
  border-radius: 999px;
  background: #f5c518;
  color: #111;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  transition: opacity 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}
.fp-upload-submit-btn i {
  font-size: 0.7em;
  transform: translateY(-1px);
}
.fp-upload-submit-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.fp-upload-submit-btn:not(:disabled):hover {
  opacity: 0.88;
}
.fp-empty-state {
  text-align: center;
  padding: 60px 20px;
  font-family: "Josefin Sans", sans-serif;
}
.fp-empty-state i {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.15);
  display: block;
  margin-bottom: 16px;
}
.fp-empty-state h2 {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  margin: 0 0 8px;
}
.fp-empty-state p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.88rem;
  margin: 0 0 20px;
}
.fp-load-spinner {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-top-color: rgba(245, 197, 24, 0.75);
  border-radius: 50%;
  animation: fp-spin 0.75s linear infinite;
}
@keyframes fp-spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── Guidelines accordion ─────────────────────────────────── */
.fp-guidelines-accordion {
  background: rgba(245, 197, 24, 0.08);
  border: 1px solid rgba(245, 197, 24, 0.25);
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
}
.fp-guidelines-accordion summary {
  padding: 10px 14px;
  cursor: pointer;
  color: rgba(245, 197, 24, 0.85);
  font-weight: 700;
  font-size: 0.78rem;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 5px;
}
.fp-guidelines-accordion summary::-webkit-details-marker {
  display: none;
}
.fp-guidelines-chevron {
  margin-left: auto;
  font-size: 0.65rem;
  opacity: 0.5;
  transition: transform 0.2s;
}
.fp-guidelines-accordion[open] .fp-guidelines-chevron {
  transform: rotate(180deg);
}
.fp-guidelines-body {
  padding: 0 14px 10px;
}

/* ── Page header ──────────────────────────────────────────── */
.fp-page-header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.fp-page-title {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
  text-align: center;
}
.fp-count-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(245, 197, 24, 0.15);
  color: #f5c518;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 2px 10px;
  border-radius: 999px;
  margin-left: 10px;
  vertical-align: middle;
}

/* ── Stats bar ────────────────────────────────────────────── */
.fp-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 0;
  margin-bottom: 18px;
}
.fp-stat {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
}
.fp-stat strong {
  color: #f5c518;
  font-weight: 700;
}
.fp-stat-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  margin: 0 14px;
  flex-shrink: 0;
}
@media (max-width: 575px) {
  .fp-stat-sep {
    margin: 0 8px;
  }
}

/* ── Spotlight banner ─────────────────────────────────────── */
/* Spotlight card — first card in masonry grid with gold accent */
.fp-photo-card.fp-spotlight {
  border-color: rgba(245, 197, 24, 0.35);
}
.fp-photo-card.fp-spotlight:hover {
  border-color: #f5c518;
}
.fp-spotlight-badge {
  position: absolute;
  top: 7px;
  left: 7px;
  z-index: 2;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #111;
  background: #f5c518;
  padding: 3px 9px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
  line-height: 1;
}
.fp-spotlight-badge i {
  font-size: 0.55rem;
}

/* ── Sticky toolbar ───────────────────────────────────────── */
.fp-toolbar {
  position: sticky;
  top: var(--fp-header-h, 68px);
  z-index: 100;
  background: var(--c-bg, #060e10);
  padding: 12px 0 8px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
}
.fp-toolbar.is-stuck {
  border-bottom-color: rgba(255, 255, 255, 0.06);
}
.fp-toolbar-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.fp-sort-btn {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s,
    border-color 0.15s;
}
.fp-sort-btn.active {
  background: rgba(245, 197, 24, 0.12);
  color: #f5c518;
  border-color: rgba(245, 197, 24, 0.35);
}
.fp-sort-btn:hover:not(.active) {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}
.fp-toolbar-sep {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}
.fp-search-wrap {
  position: relative;
  flex: 1;
  max-width: 280px;
  min-width: 160px;
  margin-left: auto;
}
.fp-search-input {
  width: 100%;
  box-sizing: border-box;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 7px 32px 7px 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.85);
  outline: none;
  transition:
    border-color 0.15s,
    background 0.15s;
}
.fp-search-input::placeholder {
  color: rgba(255, 255, 255, 0.32);
}
.fp-search-input:focus {
  border-color: rgba(245, 197, 24, 0.5);
  background: rgba(255, 255, 255, 0.1);
}
.fp-search-icon {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.32);
  pointer-events: none;
}
.fp-search-clear {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  cursor: pointer;
  padding: 4px 6px;
  line-height: 1;
  display: none;
}
.fp-search-clear:hover {
  color: rgba(255, 255, 255, 0.7);
}
.fp-search-info {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  margin: 6px 0 0;
  display: none;
}

/* ── Thumbnail hover engagement overlay ───────────────────── */
.fp-hover-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 20px 10px 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transition: opacity 0.18s;
  pointer-events: none;
}
.fp-photo-card:hover .fp-hover-stats {
  opacity: 1;
}
.fp-hover-stats i {
  font-size: 0.65rem;
  margin-right: 3px;
}

/* ── Sign-off ─────────────────────────────────────────────── */
.fp-signoff {
  text-align: center;
  padding: 40px 0 20px;
}
.fp-back-link {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 10px;
  display: inline-block;
}
.fp-back-link:hover {
  color: #f5c518;
  text-decoration: none;
}

/* ── Mobile upload FAB ────────────────────────────────────── */
.fp-upload-fab {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #f5c518;
  color: #111;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  align-items: center;
  justify-content: center;
  z-index: 101;
  transition: box-shadow 0.2s;
}
.fp-upload-fab:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  .fp-upload-fab.show {
    display: flex;
  }
}
