
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
       background: #0e0e0e; color: #e8e8e8; line-height: 1.5; }
a { color: inherit; text-decoration: none; }
header { padding: 2.5rem 1.5rem 1.5rem; text-align: center; border-bottom: 1px solid #222; }
header h1 { font-size: 1.6rem; font-weight: 500; letter-spacing: 0.02em; }
header p { color: #888; font-size: 0.95rem; margin-top: 0.4rem; }
.container { max-width: 1400px; margin: 0 auto; padding: 1.5rem; }
.dates-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.date-card { display: block; background: #181818; border-radius: 6px; overflow: hidden;
             transition: transform 0.15s ease; }
.date-card:hover { transform: translateY(-2px); }
.date-card img { width: 100%; height: 240px; object-fit: cover; display: block; }
.date-meta { padding: 0.9rem 1rem; }
.date-meta h2 { font-size: 1rem; font-weight: 500; }
.date-meta p { font-size: 0.85rem; color: #888; margin-top: 0.2rem; }
.empty { color: #666; text-align: center; padding: 3rem; }
.crumbs { color: #888; font-size: 0.9rem; margin-bottom: 1.2rem; }
.crumbs a:hover { color: #fff; }
.photo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
              gap: 0.6rem; }
.thumb { position: relative; display: block; aspect-ratio: 3/2; overflow: hidden; border-radius: 4px; }
.thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.2s ease; }
.thumb:hover img { transform: scale(1.04); }
.thumb-id { position: absolute; bottom: 6px; left: 8px; font-size: 0.7rem;
            background: rgba(0,0,0,0.6); padding: 2px 6px; border-radius: 3px; color: #ddd; }
.photo-view { text-align: center; }
.photo-view img { max-width: 100%; max-height: 80vh; border-radius: 4px; }
.photo-meta { margin-top: 1.2rem; color: #aaa; font-size: 0.9rem; }
.photo-id { font-family: monospace; color: #ddd; }
.caption { margin-top: 0.6rem; color: #ccc; font-style: italic; }
.buy { margin: 2rem auto; max-width: 520px; padding: 1.5rem; background: #181818;
       border-radius: 8px; text-align: left; }
.buy h3 { font-size: 1.05rem; margin-bottom: 0.7rem; font-weight: 500; }
.buy p { color: #bbb; font-size: 0.92rem; margin-bottom: 0.6rem; }
.btn { display: inline-block; padding: 0.7rem 1.4rem; background: #0070ba; color: #fff;
       border-radius: 4px; font-weight: 500; margin-right: 0.4rem; margin-top: 0.4rem; }
.btn.wa { background: #25d366; }
.btn:hover { opacity: 0.9; }
.nav-row { display: flex; justify-content: space-between; margin-top: 1.5rem; font-size: 0.9rem; color: #888; }
.nav-row .nav:hover { color: #fff; }
footer { text-align: center; padding: 2rem 1rem; color: #555; font-size: 0.8rem;
         border-top: 1px solid #222; margin-top: 3rem; }
.download-free { display: inline-block; margin-top: 0.5rem; color: #888; font-size: 0.85rem;
                 border-bottom: 1px dashed #555; }
.download-free:hover { color: #fff; }
