
  :root {
    --amber: #D97706;
    --amber-light: #FEF3C7;
    --amber-mid: #F59E0B;
    --red: #DC2626;
    --red-light: #FEE2E2;
    --orange: #EA580C;
    --brown: #78350F;
    --cream: #FFFBEB;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-400: #9CA3AF;
    --gray-600: #4B5563;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.14);
    --radius: 12px;
    --radius-sm: 8px;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--gray-800);
    min-height: 100vh;
    line-height: 1.6;
  }

  /* AD SLOTS */
  .ad-slot {
    background: white; border: 1px solid var(--gray-100);
    border-radius: var(--radius-sm); overflow: hidden;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    position: relative;
  }
  .ad-slot .ad-label {
    font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.8px;
    color: var(--gray-400); font-weight: 600;
    position: absolute; top: 5px; left: 50%; transform: translateX(-50%);
    white-space: nowrap; pointer-events: none;
  }
  /* Leaderboard 728×90 — below nav */
  .ad-leaderboard {
    width: 100%; padding: 10px clamp(1rem, 5vw, 3rem);
    background: white; border-bottom: 1px solid var(--gray-100);
    display: flex; justify-content: center; align-items: center;
  }
  .ad-leaderboard .ad-slot { width: min(728px,100%); height: 90px; }
  /* Rectangle 336×280 — between stats and gallery */
  .ad-rectangle-wrap {
    display: flex; justify-content: center;
    padding: 1.5rem clamp(1rem, 5vw, 3rem) 0;
    background: var(--cream);
  }
  .ad-rectangle-wrap .ad-slot { width: min(336px,100%); height: 280px; }
  /* In-feed ad card — injected into the photo grid */
  .ad-infeed {
    background: white; border-radius: var(--radius); border: 1px solid var(--gray-100);
    overflow: hidden; display: flex; flex-direction: column;
    align-items: center; justify-content: center; min-height: 280px; position: relative;
  }
  .ad-infeed .ad-label {
    font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.8px;
    color: var(--gray-400); font-weight: 600;
    position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
    white-space: nowrap;
  }
  /* Below-gallery leaderboard */
  .ad-below-gallery {
    display: flex; justify-content: center;
    padding: 2rem clamp(1rem, 5vw, 3rem) 0;
  }
  .ad-below-gallery .ad-slot { width: min(728px,100%); height: 90px; }
  /* Sticky sidebar — desktop only */
  .gallery-with-sidebar {
    display: flex; gap: 2rem; align-items: flex-start;
    max-width: 1400px; margin: 0 auto;
    padding: clamp(2rem, 6vw, 4rem) clamp(1rem, 5vw, 3rem);
  }
  .gallery-main { flex: 1; min-width: 0; }
  .ad-sidebar {
    width: 160px; flex-shrink: 0;
    position: sticky; top: 80px;
    display: flex; flex-direction: column; gap: 1.5rem;
  }
  .ad-sidebar .ad-slot { width: 160px; height: 600px; }
  .ad-sidebar .ad-slot-sm { width: 160px; height: 300px; }
  @media (max-width: 1024px) { .ad-sidebar { display: none; } }
  /* Footer leaderboard */
  .ad-footer-wrap {
    display: flex; justify-content: center;
    padding: 2rem clamp(1rem,5vw,3rem);
    background: white; border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
  }
  .ad-footer-wrap .ad-slot { width: min(728px,100%); height: 90px; }

  /* TOAST */
  #toast {
    position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%) translateY(80px);
    background: var(--gray-900); color: white;
    padding: 10px 20px; border-radius: 24px; font-size: 0.88rem; font-weight: 500;
    box-shadow: var(--shadow-lg); z-index: 9999; transition: transform 0.3s ease;
    white-space: nowrap; pointer-events: none;
  }
  #toast.show { transform: translateX(-50%) translateY(0); }
  #toast.toast-error { background: var(--red); }

  /* USER MENU in nav */
  .user-menu { display: flex; align-items: center; gap: 10px; }
  .user-avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; border: 2px solid var(--amber-mid); }
  .user-name { font-size: 0.85rem; font-weight: 600; color: var(--gray-700); max-width: 100px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

  /* AUTH MODAL */
  .auth-modal {
    background: white; border-radius: var(--radius); max-width: 380px; width: 100%;
    padding: 2.5rem 2rem; text-align: center; box-shadow: var(--shadow-lg);
  }
  .auth-modal h2 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 900; margin-bottom: 0.75rem; color: var(--gray-900); }
  .auth-modal p { font-size: 0.9rem; color: var(--gray-600); margin-bottom: 1.5rem; line-height: 1.6; }
  .google-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%; padding: 12px; border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm); background: white; cursor: pointer;
    font-size: 0.95rem; font-weight: 600; font-family: var(--font-body);
    color: var(--gray-800); transition: all 0.2s;
  }
  .google-btn:hover { background: var(--gray-50); border-color: var(--gray-400); box-shadow: var(--shadow-sm); }

  /* LOADING SPINNER */
  .grid-loading { display: flex; flex-direction: column; align-items: center; padding: 4rem; gap: 1rem; color: var(--gray-400); }
  .spinner {
    width: 36px; height: 36px; border: 3px solid var(--gray-200);
    border-top-color: var(--red); border-radius: 50%;
    animation: spin 0.8s linear infinite;
  }
  @keyframes spin { to { transform: rotate(360deg); } }

  nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,251,235,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #FDE68A;
    padding: 0 clamp(0.75rem, 3vw, 2rem);
    min-height: 64px;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: nowrap; gap: 0.5rem;
  }
  .nav-logo {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-display); font-size: 1.2rem; font-weight: 900;
    color: var(--red); text-decoration: none;
    letter-spacing: -0.5px; flex-shrink: 0; white-space: nowrap;
  }
  .nav-logo .rooster-icon {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--red), var(--orange));
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 18px;
  }
  .nav-links { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
  .nav-links a {
    font-size: 0.82rem; font-weight: 500; color: var(--gray-600);
    text-decoration: none; transition: color 0.2s; white-space: nowrap;
  }
  .nav-links a:hover { color: var(--red); }
  .btn-primary {
    background: var(--red); color: white; border: none;
    padding: 8px 18px; border-radius: 20px; font-size: 0.875rem;
    font-weight: 600; cursor: pointer; transition: background 0.2s, transform 0.1s;
    font-family: var(--font-body); display: inline-flex; align-items: center; gap: 6px;
  }
  .btn-primary:hover { background: #B91C1C; }
  .btn-primary:active { transform: scale(0.98); }
  .btn-outline {
    background: transparent; color: var(--red);
    border: 1.5px solid var(--red);
    padding: 7px 18px; border-radius: 20px; font-size: 0.875rem;
    font-weight: 600; cursor: pointer; transition: all 0.2s;
    font-family: var(--font-body); display: inline-flex; align-items: center; gap: 6px;
  }
  .btn-outline:hover { background: var(--red-light); }

  /* HERO */
  .hero {
    position: relative; overflow: hidden;
    min-height: 560px; display: flex; align-items: center;
    padding: clamp(3rem, 8vw, 5rem) clamp(1rem, 5vw, 3rem);
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1548550023-2bdb3c5beed7?w=1400&q=80') center/cover no-repeat;
  }
  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(185,28,28,0.88) 0%, rgba(234,88,12,0.80) 60%, rgba(0,0,0,0.3) 100%);
  }
  .hero-content {
    position: relative; z-index: 2; max-width: 680px; color: white;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.18); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 6px 14px; border-radius: 20px; font-size: 0.8rem;
    font-weight: 500; margin-bottom: 1.25rem;
  }
  .hero h1 {
    font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900; line-height: 1.05; margin-bottom: 1rem;
    letter-spacing: -1px;
  }
  .hero h1 em { font-style: normal; color: #FCD34D; }
  .hero p { font-size: 1.1rem; color: rgba(255,255,255,0.88); margin-bottom: 2rem; max-width: 500px; }
  .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
  .btn-hero-white {
    background: white; color: var(--red); border: none;
    padding: 12px 24px; border-radius: 24px; font-size: 1rem;
    font-weight: 600; cursor: pointer; transition: all 0.2s;
    font-family: var(--font-body); display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-hero-white:hover { background: #FEF3C7; }
  .btn-hero-outline {
    background: rgba(255,255,255,0.15); color: white;
    border: 1.5px solid rgba(255,255,255,0.6);
    padding: 12px 24px; border-radius: 24px; font-size: 1rem;
    font-weight: 600; cursor: pointer; transition: all 0.2s;
    font-family: var(--font-body); display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-hero-outline:hover { background: rgba(255,255,255,0.25); }

  /* STATS */
  .stats-bar {
    background: white; padding: 2rem clamp(1rem, 5vw, 3rem);
    display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem; border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
  }
  .stat { text-align: center; }
  .stat-num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; }
  .stat-num.red { color: var(--red); }
  .stat-num.orange { color: var(--orange); }
  .stat-num.amber { color: var(--amber); }
  .stat-num.brown { color: var(--brown); }
  .stat-label { font-size: 0.8rem; color: var(--gray-600); margin-top: 2px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }

  /* GALLERY SECTION */
  .section {
    padding: clamp(2rem, 6vw, 4rem) clamp(1rem, 5vw, 3rem);
    max-width: 1400px; margin: 0 auto;
  }
  .section-header { text-align: center; margin-bottom: 2.5rem; }
  .section-header h2 {
    font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.75rem);
    font-weight: 900; color: var(--gray-900); margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
  }
  .section-header p { color: var(--gray-600); max-width: 520px; margin: 0 auto; }

  /* SEARCH + FILTER BAR */
  .filter-bar {
    display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
    margin-bottom: 2rem;
  }
  .search-wrap {
    position: relative; flex: 1; min-width: 200px;
  }
  .search-wrap svg {
    position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
    color: var(--gray-400); pointer-events: none;
  }
  .search-input {
    width: 100%; padding: 10px 12px 10px 38px;
    border: 1.5px solid var(--gray-200); border-radius: 24px;
    font-size: 0.9rem; font-family: var(--font-body);
    background: white; outline: none; transition: border-color 0.2s;
    color: var(--gray-800);
  }
  .search-input:focus { border-color: var(--amber-mid); }
  .cat-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
  .cat-tab {
    padding: 7px 16px; border-radius: 20px; font-size: 0.8rem; font-weight: 600;
    cursor: pointer; border: 1.5px solid var(--gray-200); background: white;
    transition: all 0.2s; font-family: var(--font-body); color: var(--gray-600);
    white-space: nowrap;
  }
  .cat-tab:hover { border-color: var(--amber-mid); color: var(--amber); }
  .cat-tab.active {
    background: var(--red); color: white; border-color: var(--red);
  }

  /* PHOTO GRID */
  .photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
  }
  .photo-card {
    background: white; border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-sm); cursor: pointer;
    transition: box-shadow 0.25s, transform 0.25s;
    border: 1px solid var(--gray-100);
  }
  .photo-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
  .photo-thumb {
    position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--gray-100);
  }
  .photo-thumb img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
  }
  .photo-card:hover .photo-thumb img { transform: scale(1.08); }
  .photo-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 50%);
    opacity: 0; transition: opacity 0.3s;
  }
  .photo-card:hover .photo-overlay { opacity: 1; }
  .cat-badge {
    position: absolute; top: 10px; right: 10px;
    background: rgba(255,255,255,0.92); color: var(--gray-800);
    font-size: 0.7rem; font-weight: 700; padding: 3px 8px;
    border-radius: 10px; text-transform: capitalize; letter-spacing: 0.3px;
  }
  .photo-body { padding: 14px; }
  .photo-title {
    font-weight: 600; font-size: 0.95rem; color: var(--gray-900);
    margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .photo-desc {
    font-size: 0.78rem; color: var(--gray-600); line-height: 1.5;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    margin-bottom: 12px;
  }
  .photo-meta {
    display: flex; align-items: center; justify-content: space-between;
  }
  .photo-author { display: flex; align-items: center; gap: 6px; }
  .avatar {
    width: 24px; height: 24px; border-radius: 50%; background: var(--amber-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.65rem; font-weight: 700; color: var(--brown); overflow: hidden;
  }
  .avatar img { width: 100%; height: 100%; object-fit: cover; }
  .author-name { font-size: 0.75rem; color: var(--gray-600); font-weight: 500; }
  .photo-stats { display: flex; align-items: center; gap: 10px; color: var(--gray-400); font-size: 0.75rem; }
  .photo-stats span { display: flex; align-items: center; gap: 3px; }

  /* EMPTY STATE */
  .empty-state {
    text-align: center; padding: 4rem 2rem; color: var(--gray-400);
  }
  .empty-state .icon { font-size: 4rem; margin-bottom: 1rem; }
  .empty-state h3 { font-size: 1.25rem; color: var(--gray-600); margin-bottom: 0.5rem; }

  /* SINGAPORE SECTION */
  .singapore-section {
    background: white; padding: clamp(2rem, 6vw, 4rem) clamp(1rem, 5vw, 3rem);
  }
  .singapore-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  }
  @media (max-width: 768px) { .singapore-inner { grid-template-columns: 1fr; } }
  .sgp-tag {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--red-light); color: var(--red);
    padding: 5px 12px; border-radius: 16px; font-size: 0.78rem; font-weight: 700;
    margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.5px;
  }
  .sgp-text h2 {
    font-family: var(--font-display); font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 900; color: var(--gray-900); margin-bottom: 1rem; letter-spacing: -0.5px;
  }
  .sgp-text p { color: var(--gray-600); margin-bottom: 0.75rem; line-height: 1.7; }
  .sgp-text strong { color: var(--gray-900); }
  .sgp-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 1.5rem; }
  .sgp-stat {
    background: var(--amber-light); padding: 14px; border-radius: var(--radius-sm);
  }
  .sgp-stat-num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--red); }
  .sgp-stat-label { font-size: 0.75rem; color: var(--gray-600); margin-top: 2px; }
  .sgp-image-wrap { position: relative; }
  .sgp-image-wrap img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
  .sgp-callout {
    position: absolute; bottom: -16px; left: -16px;
    background: white; padding: 12px 16px; border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 10px;
  }
  .sgp-callout-icon {
    width: 40px; height: 40px; background: #D1FAE5; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 1.25rem;
  }
  .sgp-callout-text { font-size: 0.75rem; }
  .sgp-callout-title { font-weight: 600; color: var(--gray-900); }
  .sgp-callout-sub { color: var(--gray-600); }

  /* ABOUT */
  .about-section {
    background: linear-gradient(135deg, #FEF3C7 0%, #FEE2E2 50%, #FFEDD5 100%);
    padding: clamp(2rem, 6vw, 4rem) clamp(1rem, 5vw, 3rem);
  }
  .about-grid {
    max-width: 1000px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem; margin-top: 2rem;
  }
  .about-card {
    background: white; padding: 2rem; border-radius: var(--radius);
    text-align: center; box-shadow: var(--shadow-sm);
  }
  .about-icon {
    width: 60px; height: 60px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem; font-size: 1.5rem;
  }
  .about-icon.red { background: var(--red-light); }
  .about-icon.orange { background: #FFEDD5; }
  .about-icon.amber { background: var(--amber-light); }
  .about-card h3 { font-weight: 600; margin-bottom: 0.5rem; }
  .about-card p { font-size: 0.85rem; color: var(--gray-600); line-height: 1.6; }

  /* FOOTER */
  footer {
    background: var(--gray-900); color: var(--gray-400);
    padding: clamp(2rem, 5vw, 3.5rem) clamp(1rem, 5vw, 3rem);
  }
  .footer-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem;
  }
  @media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; } }
  .footer-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 0.75rem; color: white; font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; }
  .footer-desc { font-size: 0.85rem; line-height: 1.7; max-width: 300px; }
  footer h4 { color: white; font-weight: 600; margin-bottom: 1rem; font-size: 0.9rem; }
  footer ul { list-style: none; }
  footer ul li { margin-bottom: 8px; }
  footer ul li a, footer ul li span {
    font-size: 0.85rem; color: var(--gray-400); text-decoration: none;
    transition: color 0.2s; cursor: pointer;
  }
  footer ul li a:hover, footer ul li span:hover { color: white; }
  .footer-bottom {
    max-width: 1100px; margin: 2rem auto 0;
    padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08);
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 0.5rem;
  }
  .footer-bottom p { font-size: 0.8rem; }
  .footer-heart { color: #EF4444; }

  /* MODAL OVERLAY */
  .modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.65);
    z-index: 1000; display: none; align-items: center; justify-content: center;
    padding: 1rem;
  }
  .modal-overlay.open { display: flex; }
  .modal {
    background: white; border-radius: var(--radius); max-width: 900px; width: 100%;
    max-height: 90vh; overflow: hidden;
    display: grid; grid-template-columns: 1fr 1fr;
    box-shadow: var(--shadow-lg);
  }
  @media (max-width: 640px) { .modal { grid-template-columns: 1fr; } }
  .modal-image { position: relative; background: var(--gray-100); }
  .modal-image img { width: 100%; height: 100%; object-fit: cover; }
  .modal-body {
    display: flex; flex-direction: column; max-height: 90vh; overflow-y: auto;
    padding: 1.5rem;
  }
  .modal-badges { display: flex; gap: 6px; margin-bottom: 0.75rem; }
  .badge {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 0.7rem; font-weight: 700; padding: 3px 8px;
    border-radius: 10px; text-transform: capitalize;
  }
  .badge-cat { background: var(--amber-light); color: var(--brown); }
  .badge-loc { background: var(--gray-100); color: var(--gray-600); border: 1px solid var(--gray-200); }
  .modal-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--gray-900); margin-bottom: 1rem; }
  .modal-author { display: flex; align-items: center; gap: 10px; margin-bottom: 0.75rem; }
  .avatar-lg { width: 36px; height: 36px; border-radius: 50%; overflow: hidden; background: var(--amber-light); }
  .avatar-lg img { width: 100%; height: 100%; object-fit: cover; }
  .modal-desc { font-size: 0.9rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 1.25rem; }
  .vote-row {
    display: flex; align-items: center; gap: 12px; margin-bottom: 1.25rem;
    padding-bottom: 1.25rem; border-bottom: 1px solid var(--gray-100);
  }
  .vote-btn {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 6px 14px; border-radius: 16px; border: 1.5px solid var(--gray-200);
    background: white; cursor: pointer; font-size: 0.8rem; font-weight: 600;
    transition: all 0.2s; font-family: var(--font-body); color: var(--gray-700);
  }
  .vote-btn:hover { border-color: var(--amber-mid); color: var(--amber); }
  .view-count { font-size: 0.78rem; color: var(--gray-400); display: flex; align-items: center; gap: 4px; }
  .comments-section h4 { font-weight: 600; margin-bottom: 0.75rem; font-size: 0.9rem; }
  .comment { display: flex; gap: 10px; margin-bottom: 0.75rem; }
  .comment-body { flex: 1; }
  .comment-author { font-size: 0.78rem; font-weight: 600; color: var(--gray-800); }
  .comment-date { font-size: 0.7rem; color: var(--gray-400); margin-left: 6px; }
  .comment-text { font-size: 0.82rem; color: var(--gray-600); margin-top: 2px; }
  .no-comments { font-size: 0.82rem; color: var(--gray-400); text-align: center; padding: 1rem 0; }
  .comment-input-row { display: flex; gap: 8px; margin-top: 0.75rem; }
  .comment-input {
    flex: 1; padding: 8px 14px; border: 1.5px solid var(--gray-200);
    border-radius: 20px; font-size: 0.85rem; font-family: var(--font-body);
    outline: none; transition: border-color 0.2s;
  }
  .comment-input:focus { border-color: var(--amber-mid); }
  .send-btn {
    background: var(--red); color: white; border: none; width: 36px; height: 36px;
    border-radius: 50%; cursor: pointer; display: flex; align-items: center;
    justify-content: center; transition: background 0.2s; flex-shrink: 0;
  }
  .send-btn:hover { background: #B91C1C; }
  .close-btn {
    position: absolute; top: 12px; right: 12px;
    background: rgba(0,0,0,0.5); color: white; border: none;
    width: 30px; height: 30px; border-radius: 50%; cursor: pointer;
    font-size: 1rem; display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
  }
  .close-btn:hover { background: rgba(0,0,0,0.75); }

  /* UPLOAD MODAL */
  .upload-modal {
    background: white; border-radius: var(--radius); max-width: 480px; width: 100%;
    padding: 2rem; box-shadow: var(--shadow-lg); max-height: 90vh; overflow-y: auto;
  }
  .upload-modal h2 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--gray-900); }
  .form-group { margin-bottom: 1rem; }
  .form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--gray-700); margin-bottom: 5px; }
  .form-input {
    width: 100%; padding: 9px 12px; border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm); font-size: 0.88rem; font-family: var(--font-body);
    outline: none; transition: border-color 0.2s; color: var(--gray-800);
  }
  .form-input:focus { border-color: var(--amber-mid); }
  textarea.form-input { min-height: 80px; resize: vertical; }
  select.form-input { cursor: pointer; }
  .form-hint { font-size: 0.73rem; color: var(--gray-400); margin-top: 3px; }

  /* FILE DROP ZONE */
  .drop-zone {
    border: 2px dashed var(--gray-200); border-radius: var(--radius-sm);
    padding: 2rem 1rem; text-align: center; cursor: pointer;
    transition: all 0.2s; background: var(--gray-50);
  }
  .drop-zone:hover, .drop-zone.drag-over { border-color: var(--amber-mid); background: var(--amber-light); }
  .drop-zone .dz-icon { font-size: 2rem; margin-bottom: 0.5rem; }
  .drop-zone p { font-size: 0.82rem; color: var(--gray-600); }
  .drop-zone strong { color: var(--red); }
  .drop-zone input[type="file"] { display: none; }
  .preview-img { width: 100%; max-height: 180px; object-fit: cover; border-radius: var(--radius-sm); margin-bottom: 0.5rem; }

  @media (max-width: 768px) {
    .nav-links a:not(:last-child) { display: none; }
    .photo-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; }
    .modal { grid-template-columns: 1fr; }
    .modal-image { max-height: 250px; }
  }

  /* FACEBOOK SHARE BUTTONS */
  .fb-share-btn {
    display: inline-flex; align-items: center; gap: 5px;
    background: #1877F2; color: white; border: none;
    padding: 6px 12px; border-radius: 16px; font-size: 0.78rem;
    font-weight: 600; cursor: pointer; transition: background 0.2s;
    font-family: var(--font-body); margin-left: auto;
  }
  .fb-share-btn:hover { background: #0e65d9; }

  .card-share-btn {
    display: inline-flex; align-items: center; justify-content: center;
    background: #1877F2; color: white; border: none;
    width: 22px; height: 22px; border-radius: 50%;
    cursor: pointer; transition: background 0.2s, transform 0.2s;
    padding: 0; flex-shrink: 0;
  }
  .card-share-btn:hover { background: #0e65d9; transform: scale(1.15); }
