/* Resultatenpagina — ranglijst + photowall (EX-huisstijl). */
.djr { }
.djr-intro { margin: 0 0 16px; }
.djr-status { padding: 24px 0; text-align: center; color: #6b7480; }
.djr-status--loading::after { content: ''; display: inline-block; width: 16px; height: 16px; margin-left: 8px; border: 2px solid #c7cdd4; border-top-color: var(--djt-accent, #2f5233); border-radius: 50%; vertical-align: middle; animation: djr-spin .8s linear infinite; }
@keyframes djr-spin { to { transform: rotate( 360deg ); } }

.djr-h { font-size: 1.15rem; margin: 18px 0 10px; color: var(--djt-ink, #1f2733); }
.djr-h--photos { margin-top: 26px; }

/* Ranglijst */
.djr-rank { list-style: none; margin: 0; padding: 0; }
.djr-rank__row { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border: 1px solid #e2e6ea; border-radius: 10px; margin: 0 0 8px; background: #fff; }
.djr-rank__row.is-done { border-color: color-mix( in srgb, var(--djt-accent, #2f5233) 40%, #e2e6ea ); }
.djr-rank__row:nth-child(1) .djr-rank__pos { background: #f5c542; color: #4a3a00; }
.djr-rank__row:nth-child(2) .djr-rank__pos { background: #cfd4da; color: #333; }
.djr-rank__row:nth-child(3) .djr-rank__pos { background: #e2a06a; color: #452a12; }
.djr-rank__pos { flex: 0 0 auto; width: 28px; height: 28px; border-radius: 50%; background: color-mix( in srgb, var(--djt-accent, #2f5233) 12%, #fff ); color: var(--djt-accent, #2f5233); font-weight: 800; display: flex; align-items: center; justify-content: center; font-size: .95rem; }
.djr-rank__name { flex: 1 1 auto; font-weight: 700; color: var(--djt-ink, #1f2733); min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.djr-rank__meta { flex: 0 0 auto; display: flex; align-items: center; gap: 8px; color: #6b7480; font-size: .85rem; }
.djr-rank__flag { background: color-mix( in srgb, var(--djt-accent, #2f5233) 14%, #fff ); color: var(--djt-accent, #2f5233); border-radius: 999px; padding: 2px 8px; font-weight: 700; }
.djr-rank__score { flex: 0 0 auto; font-weight: 800; font-size: 1.05rem; color: var(--djt-ink, #1f2733); min-width: 48px; text-align: right; }
.djr-rank__empty, .djr-photos__empty { color: #6b7480; padding: 8px 0; }

/* Photowall */
.djr-photos { display: grid; grid-template-columns: repeat( auto-fill, minmax( 120px, 1fr ) ); gap: 8px; }
.djr-photo { display: block; border-radius: 8px; overflow: hidden; aspect-ratio: 1 / 1; background: #f0f2f4; cursor: zoom-in; }
.djr-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .2s ease; }
.djr-photo:hover img { transform: scale( 1.04 ); }

.djr-updated { margin: 16px 0 0; color: #9aa2ac; font-size: .8rem; text-align: right; }

/* Lightbox */
.djr-lightbox { position: fixed; inset: 0; background: rgba( 0, 0, 0, .85 ); display: flex; align-items: center; justify-content: center; z-index: 99999; padding: 20px; }
.djr-lightbox[hidden] { display: none; }
.djr-lightbox img { max-width: 96vw; max-height: 92vh; border-radius: 6px; }
.djr-lightbox__close { position: absolute; top: 14px; right: 18px; background: none; border: 0; color: #fff; font-size: 2.2rem; line-height: 1; cursor: pointer; }
