
/* filepath: c:\Ayush\CornerKona\genz.css */
/* ...existing code... */
:root{
  --accent-from:#0037ff;
  --accent-to:#333;
  --muted:#666;
  --card-bg:#fff;
  --radius:12px;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
}
.container-max{ max-width:5000px; margin:0px auto; padding:12px; }
.card{ background:var(--card-bg); border-radius:var(--radius); padding:14px; box-shadow:0 10px 30px rgba(0,0,0,0.06); }

.hero{ display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:14px; }
.hero-left h1{ margin:0; font-size:1.6rem; }
.hero-left .muted{ color:var(--muted); margin-top:6px; }
.hero-right img{ width:120px; height:80px; object-fit:cover; border-radius:8px; }

/* tabs */
.genz-tabs{ display:flex; gap:8px; margin-bottom:12px; flex-wrap:wrap; }
.tab{ padding:8px 12px; border-radius:10px; background:#fff; border:1px solid #eee; cursor:pointer; }
.tab.active{ background:linear-gradient(90deg,var(--accent-from),var(--accent-to)); color:#fff; font-weight:700; border-color:transparent; }

/* controls */
.section-controls{ display:flex; gap:8px; margin-bottom:12px; }
.section-controls input{ flex:1; padding:8px 10px; border-radius:8px; border:1px solid #ddd; }
.section-controls select{ padding:8px; border-radius:8px; border:1px solid #ddd; }

/* grid */
.genz-list{ display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }
.genz-card{ background:#fff; border-radius:10px; overflow:hidden; box-shadow:0 8px 24px rgba(0,0,0,0.06); cursor:pointer; display:flex; flex-direction:column; }
.genz-thumb{ width:100%; height:160px; object-fit:cover; background:#000; display:block; }
.genz-body{ padding:10px; display:flex; flex-direction:column; gap:6px; }
.genz-title{ margin:0; font-size:1rem; color:#110f01; }
.genz-excerpt{ margin:0; color:var(--muted); font-size:.95rem; line-height:1.3; }

/* load more */
.genz-load{ text-align:center; margin-top:14px; }
.btn-primary{ padding:10px 14px; border-radius:10px; border:0; background:linear-gradient(90deg,var(--accent-from),#0037ff); color:#fff; cursor:pointer; }

/* modal */
.genz-modal{ position:fixed; inset:0; display:flex; align-items:center; justify-content:center; background:rgba(0,0,0,0.55); z-index:200; }
.genz-modal-inner{ width:min(900px,96%); max-height:90vh; overflow:auto; background:#fff; border-radius:10px; padding:16px; position:relative; }
.genz-modal .close{ position:absolute; right:12px; top:12px; background:transparent;border:0;font-size:20px;cursor:pointer; }
.genz-modal img{ max-width:100%; display:block; margin:8px 0; }

/* responsive */
@media(max-width:900px){ .genz-list{ grid-template-columns:repeat(2,1fr) } .hero-right img{ width:96px;height:64px } }
@media(max-width:600px){ .genz-list{ grid-template-columns:1fr } .genz-thumb{ height:140px } }