/* ========================================
   VARIABLES
======================================== */
:root {
  --hot-pink:   #FF1493;
  --deep-pink:  #C71585;
  --neon-pink:  #FF00FF;
  --light-pink: #FF69B4;
  --baby-pink:  #FFB6C1;
  --bg-dark:    #0d0010;
  --bg-card:    #1a0022;
  --bg-card2:   #250030;
  --text-light: #FFE8F5;
  --text-dim:   #CC88AA;
  --border:     rgba(255,20,147,0.25);
  --glow:       0 0 18px rgba(255,20,147,0.4);
  --glow-strong:0 0 35px rgba(255,0,255,0.55);
  --sidebar-w:  190px;
  --panel-w:    min(1080px, 80vw);
  --banner-h:   220px;
  --radius:     10px;
  --transition: 0.3s ease;
}

/* ========================================
   RESET & BASE
======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg-dark);
  color: var(--text-light);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: var(--light-pink); text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

.hidden { display: none !important; }
.pink { color: var(--hot-pink); }

/* ========================================
   PROTECTION MÉDIA
======================================== */
img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}
video {
  -webkit-user-drag: none;
  user-drag: none;
}
/* Rétablir pointer-events sur les conteneurs cliquables */
.photo-thumb, .top-rated-card, .right-panel { pointer-events: auto; }
.photo-thumb img, .top-rated-card img       { pointer-events: none; }

/* Blocage impression */
@media print { body { display: none !important; } }

/* ========================================
   SCROLLBAR
======================================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--deep-pink); border-radius: 3px; }

/* ========================================
   AGE GATE
======================================== */
.age-gate {
  position: fixed; inset: 0;
  background: radial-gradient(ellipse at center, #1a0030 0%, #0d0010 70%);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.age-gate-box {
  background: var(--bg-card);
  border: 2px solid var(--hot-pink);
  border-radius: 16px;
  padding: 40px 50px;
  max-width: 560px;
  width: 100%;
  text-align: center;
  box-shadow: var(--glow-strong), inset 0 0 60px rgba(255,20,147,0.05);
  animation: fadeInScale 0.5s ease;
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes fadeOutScale {
  from { opacity: 1; transform: scale(1); }
  to   { opacity: 0; transform: scale(1.05); }
}

.age-gate-icon { font-size: 48px; margin-bottom: 12px; }

.age-gate-box h1 {
  font-size: 2rem;
  color: var(--hot-pink);
  text-shadow: var(--glow);
  letter-spacing: 3px;
  margin-bottom: 6px;
}

.age-gate-box h2 {
  font-size: 1.1rem;
  color: var(--baby-pink);
  font-weight: 400;
  margin-bottom: 20px;
}

.age-gate-divider {
  height: 2px;
  background: linear-gradient(to right, transparent, var(--hot-pink), transparent);
  margin: 16px 0;
}

.age-gate-box p {
  color: var(--text-dim);
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.age-gate-box ul {
  list-style: none;
  text-align: left;
  margin: 16px 0 24px;
  display: inline-block;
}

.age-gate-box ul li {
  padding: 5px 0 5px 20px;
  position: relative;
  color: var(--text-light);
  font-size: 0.92rem;
}

.age-gate-box ul li::before {
  content: '♦';
  position: absolute; left: 0;
  color: var(--hot-pink);
  font-size: 0.7rem;
  top: 7px;
}

.age-gate-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.btn-enter {
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--hot-pink), var(--deep-pink));
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: var(--glow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-enter:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-strong);
}

.btn-leave {
  padding: 11px 28px;
  background: transparent;
  color: var(--text-dim);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 30px;
  font-size: 0.9rem;
  transition: background var(--transition);
}

.btn-leave:hover {
  background: rgba(255,255,255,0.05);
}

.age-gate-legal {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.4;
}

/* ========================================
   APP LAYOUT
======================================== */
.app { display: flex; flex-direction: column; min-height: 100vh; }

/* ========================================
   BANNER
======================================== */
.banner {
  position: relative;
  height: var(--banner-h);
  overflow: hidden;
  flex-shrink: 0;
  border-bottom: 3px solid var(--hot-pink);
  box-shadow: 0 4px 30px rgba(255,20,147,0.4);
}

.banner-photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #1a0030;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.banner:hover .banner-photo { transform: scale(1); }

.banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(13,0,16,0.85) 0%,
    rgba(13,0,16,0.4) 40%,
    rgba(13,0,16,0.7) 100%
  );
}

.banner-content {
  position: relative; z-index: 1;
  height: 100%;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  padding: 20px;
}

.site-title {
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: 4px;
  background: linear-gradient(135deg, #fff 0%, var(--hot-pink) 50%, var(--neon-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 20px rgba(255,20,147,0.7));
  animation: pulseName 3s ease-in-out infinite;
}

@keyframes pulseName {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(255,20,147,0.7)); }
  50%       { filter: drop-shadow(0 0 40px rgba(255,0,255,0.9)); }
}

.site-subtitle {
  font-size: 1rem;
  color: var(--baby-pink);
  letter-spacing: 2px;
  margin-top: 6px;
  opacity: 0.85;
}

/* ========================================
   LAYOUT (sidebar + main + panel)
======================================== */
.layout {
  display: flex;
  flex: 1;
  overflow: hidden;
  position: relative;
}

/* ========================================
   SIDEBAR
======================================== */
.sidebar {
  width: var(--sidebar-w);
  flex-shrink: 0;
  background: var(--bg-card);
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
  padding: 24px 12px;
  gap: 8px;
  overflow-y: auto;
}

.nav-btn {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 16px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--text-dim);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all var(--transition);
  text-align: left;
  width: 100%;
}

.nav-icon { font-size: 1.3rem; flex-shrink: 0; }

.nav-btn:hover {
  background: rgba(255,20,147,0.1);
  border-color: var(--border);
  color: var(--light-pink);
}

.nav-btn.active {
  background: linear-gradient(135deg, rgba(255,20,147,0.2), rgba(199,21,133,0.15));
  border-color: var(--hot-pink);
  color: var(--hot-pink);
  box-shadow: var(--glow);
}

/* ========================================
   MAIN CONTENT
======================================== */
.main-content {
  flex: 1;
  overflow-y: auto;
  padding: 28px 32px;
  min-width: 0;
  transition: padding-right var(--transition);
}

/* ========================================
   SECTIONS
======================================== */
.section { display: none; }
.section.active { display: block; animation: fadeIn 0.35s ease; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.section-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.section-header h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-light);
}

/* ========================================
   TOP-RATED (HOME)
======================================== */
.top-rated-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 20px 0;
}

.top-rated-card {
  display: inline-flex;
  flex-direction: column;
  max-width: 100%;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--glow);
  cursor: pointer;
  transition: box-shadow var(--transition);
}

.top-rated-card:hover { box-shadow: var(--glow-strong); }

.top-rated-card img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - var(--banner-h) - 200px);
  width: auto;
  height: auto;
}

.top-rated-info {
  padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--border);
}

.top-rated-info .photo-name {
  font-size: 0.9rem; color: var(--text-dim);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

.star-display {
  color: var(--hot-pink);
  font-size: 1.1rem;
  white-space: nowrap;
}

.no-content {
  text-align: center;
  color: var(--text-dim);
  padding: 60px 20px;
  font-size: 1.1rem;
}

/* ========================================
   PHOTOS GRID
======================================== */
.photos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.photo-thumb {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  cursor: pointer;
  background: var(--bg-card2);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.photo-thumb:hover {
  transform: scale(1.04);
  border-color: var(--hot-pink);
  box-shadow: var(--glow);
}

.photo-thumb img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform var(--transition);
}

.photo-thumb:hover img { transform: scale(1.08); }

.photo-thumb .thumb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,0,16,0.8) 0%, transparent 50%);
  opacity: 0; transition: opacity var(--transition);
  display: flex; align-items: flex-end; justify-content: space-between; padding: 8px;
}

.photo-thumb:hover .thumb-overlay { opacity: 1; }

.thumb-rating {
  color: var(--hot-pink);
  font-size: 0.8rem;
  font-weight: 700;
}

/* ========================================
   PAGINATION
======================================== */
.pagination {
  display: flex; gap: 8px; justify-content: center;
  padding: 8px 0;
}

.page-btn {
  min-width: 36px; height: 36px;
  padding: 0 10px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-dim);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.page-btn:hover { border-color: var(--hot-pink); color: var(--hot-pink); }
.page-btn.active { background: var(--hot-pink); border-color: var(--hot-pink); color: #fff; box-shadow: var(--glow); }

/* ========================================
   VIDEO SECTION
======================================== */
.video-layout {
  display: flex;
  gap: 0;
  height: calc(100vh - var(--banner-h) - 140px);
}

.video-main-col {
  flex: 0 0 60%;
  display: flex;
  flex-direction: column;
  background: #000;
  border-radius: 14px 0 0 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--glow);
}

.video-side-col {
  flex: 1;
  overflow-y: auto;
  border: 1px solid var(--border);
  border-left: none;
  border-radius: 0 14px 14px 0;
  background: var(--bg-card);
  padding: 20px 18px;
}

.video-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}

.video-wrap video {
  width: 100%;
  height: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
  background: #000;
}

/* ========================================
   INTERACTIONS (rating + comments)
======================================== */
.interactions {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  margin-top: 4px;
}

.interactions-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--hot-pink);
  margin-bottom: 18px;
}

/* Star Rating */
.rating-block { margin-bottom: 24px; }
.rating-label { font-size: 0.9rem; color: var(--text-dim); margin-bottom: 10px; }

.stars {
  display: inline-flex; gap: 6px;
  font-size: 1.8rem;
  cursor: pointer;
  user-select: none;
}

.stars .star {
  color: rgba(255,255,255,0.15);
  transition: color var(--transition), transform var(--transition), text-shadow var(--transition);
}

.stars .star:hover,
.stars .star.hovered,
.stars .star.selected {
  color: var(--hot-pink);
  text-shadow: 0 0 10px rgba(255,20,147,0.8);
  transform: scale(1.2);
}

.rating-info {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.rating-info .avg-val { color: var(--hot-pink); font-weight: 700; }

/* Comments */
.comments-block { border-top: 1px solid var(--border); padding-top: 20px; }

.comment-form { margin-bottom: 20px; }

.comment-form input,
.comment-form textarea {
  width: 100%;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-light);
  padding: 10px 14px;
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
}

.comment-form input:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: var(--hot-pink);
  box-shadow: 0 0 8px rgba(255,20,147,0.3);
}

.comment-form input { margin-bottom: 10px; }
.comment-form textarea { margin-bottom: 12px; min-height: 80px; }

.btn-primary {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--hot-pink), var(--deep-pink));
  color: #fff;
  border: none;
  border-radius: 24px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-strong);
}

.btn-secondary {
  display: inline-block;
  padding: 8px 20px;
  background: transparent;
  border: 1px solid var(--hot-pink);
  border-radius: 20px;
  color: var(--hot-pink);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
}

.btn-secondary:hover {
  background: rgba(255,20,147,0.12);
  box-shadow: var(--glow);
}

.comments-list { display: flex; flex-direction: column; gap: 14px; }

.comment-item {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
}

.comment-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
}

.comment-nick {
  font-weight: 700;
  color: var(--light-pink);
  font-size: 0.9rem;
}

.comment-date {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.comment-text {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
  word-break: break-word;
}

.no-comments {
  color: var(--text-dim);
  font-size: 0.9rem;
  text-align: center;
  padding: 16px 0;
}

/* ========================================
   RIGHT PANEL
======================================== */
.right-panel {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: var(--panel-w);
  background: var(--bg-card);
  border-left: 2px solid var(--hot-pink);
  box-shadow: -8px 0 40px rgba(255,20,147,0.3);
  transform: translateX(100%);
  transition: transform var(--transition);
  z-index: 200;
  display: flex; flex-direction: column;
  overflow: hidden;
}

.right-panel.open { transform: translateX(0); }

.panel-close {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px;
  background: rgba(255,20,147,0.15);
  border: 1px solid var(--hot-pink);
  border-radius: 50%;
  color: var(--hot-pink);
  font-size: 1rem;
  z-index: 1;
  transition: background var(--transition);
}

.panel-close:hover { background: rgba(255,20,147,0.35); }

.panel-content {
  flex: 1;
  display: flex;
  flex-direction: row;
  gap: 0;
  overflow: hidden;
  padding: 0;
}

/* Colonne gauche : photo */
.panel-photo-col {
  flex: 0 0 58%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 52px 16px 20px 20px;
  overflow: hidden;
  background: #000;
}

.panel-photo-col img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 80px);
  width: auto;
  height: auto;
  border-radius: 8px;
}

/* Colonne droite : interactions */
.panel-interactions-col {
  flex: 1;
  overflow-y: auto;
  padding: 52px 18px 20px 18px;
  border-left: 1px solid var(--border);
}

/* ========================================
   CONTACT MODAL
======================================== */
.modal {
  position: fixed; inset: 0;
  z-index: 500;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}

.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(13,0,16,0.85);
  backdrop-filter: blur(4px);
}

.modal-box {
  position: relative;
  background: var(--bg-card);
  border: 2px solid var(--hot-pink);
  border-radius: 16px;
  padding: 36px 40px;
  width: 100%; max-width: 520px;
  box-shadow: var(--glow-strong);
  animation: fadeInScale 0.3s ease;
}

.modal-box h2 {
  font-size: 1.6rem;
  color: var(--hot-pink);
  margin-bottom: 6px;
}

.modal-sub {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 30px; height: 30px;
  background: rgba(255,20,147,0.12);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-dim);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.modal-close:hover {
  border-color: var(--hot-pink);
  color: var(--hot-pink);
  background: rgba(255,20,147,0.25);
}

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 6px;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-light);
  padding: 11px 14px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--hot-pink);
  box-shadow: 0 0 10px rgba(255,20,147,0.25);
}

.feedback {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  display: none;
}

.feedback.success { background: rgba(0,200,100,0.12); border: 1px solid #00c864; color: #00c864; display: block; }
.feedback.error   { background: rgba(255,50,50,0.12);  border: 1px solid #ff3232; color: #ff5555; display: block; }

/* ========================================
   SPINNER / LOADER
======================================== */
.spinner {
  width: 44px; height: 44px;
  border: 4px solid rgba(255,20,147,0.15);
  border-top-color: var(--hot-pink);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 40px auto;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ========================================
   VUES PAR ÉLÉMENT
======================================== */
.thumb-views {
  color: rgba(255,255,255,0.65);
  font-size: 0.72rem;
  font-weight: 600;
}

.item-views {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 18px;
  padding: 5px 10px;
  background: rgba(255,20,147,0.07);
  border: 1px solid rgba(255,20,147,0.15);
  border-radius: 6px;
  display: inline-block;
}

/* ========================================
   STATS TRIGGER BUTTON
======================================== */
.stats-trigger {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255,20,147,0.06);
  border: 1px solid rgba(255,20,147,0.12);
  cursor: pointer;
  z-index: 900;
  padding: 0;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.stats-trigger:hover {
  background: rgba(255,20,147,0.22);
  border-color: rgba(255,20,147,0.45);
  box-shadow: 0 0 8px rgba(255,20,147,0.3);
}

/* ========================================
   STATS MODAL
======================================== */
.stats-modal-box { max-width: 500px; }

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 20px 0 24px;
}

.stat-card {
  background: rgba(255,20,147,0.07);
  border: 1px solid rgba(255,20,147,0.22);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
}

.stat-value {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--hot-pink);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
  text-shadow: var(--glow);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.stats-section-title {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin: 20px 0 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}

.stats-item-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 200px;
  overflow-y: auto;
  margin-bottom: 4px;
}

.stats-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 12px;
  background: rgba(255,255,255,0.03);
  border-radius: 7px;
  font-size: 0.88rem;
}

.stats-item-name { color: var(--text-light); }

.stats-item-views {
  color: var(--hot-pink);
  font-weight: 600;
  font-size: 0.82rem;
  white-space: nowrap;
  margin-left: 12px;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 900px) {
  :root { --sidebar-w: 60px; --panel-w: 100vw; }

  .nav-label { display: none; }
  .nav-btn { justify-content: center; padding: 14px; }
  .nav-icon { font-size: 1.5rem; }

  .main-content { padding: 18px 16px; }
  .photos-grid { grid-template-columns: repeat(3, 1fr); }

  .site-title { font-size: 2.2rem; }
}

@media (max-width: 600px) {
  .photos-grid { grid-template-columns: repeat(2, 1fr); }
  .modal-box { padding: 24px 20px; }
  .site-title { font-size: 1.6rem; letter-spacing: 2px; }
}
