@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;600&family=Fira+Code&display=swap');

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  background:#0c0c0c;
  color:#e4e4e7;
  font-family:'Inter', sans-serif;
  overflow-x:hidden;
  min-height:100vh;
}

/* Navigation */
nav {
  position:fixed;
  top:0;
  width:100%;
  padding:2rem 4rem;
  display:flex;
  justify-content:space-between;
  align-items:center;
  z-index:100;
  mix-blend-mode:difference;
}
.logo {
  font-weight:700;
  font-size:1.1rem;
  letter-spacing:3px;
  color:#fff;
}
.nav-links a {
  color:#fff;
  text-decoration:none;
  margin-left:2.5rem;
  font-size:0.85rem;
  letter-spacing:1.5px;
  text-transform:uppercase;
  transition:opacity 0.3s;
}
.nav-links a:hover { opacity:0.6; }

/* Hero */
.hero {
  height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:0 2rem;
}
.tag {
  font-family:'Fira Code', monospace;
  font-size:0.8rem;
  color:#ef4444;
  letter-spacing:3px;
  margin-bottom:1.5rem;
  display:block;
}
.hero h1 {
  font-size:clamp(2.5rem, 6vw, 5rem);
  font-weight:700;
  letter-spacing:-1px;
  margin-bottom:1.5rem;
  color:#e4e4e7;
}
.hero-desc {
  max-width:600px;
  font-size:1.1rem;
  line-height:1.7;
  opacity:0.6;
}

/* Showcase section */
.showcase {
  width:100%;
  position:relative;
  padding:4rem 0;
}

/* Footer */
footer {
  text-align:center;
  padding:3rem 2rem;
  font-family:'Fira Code', monospace;
  font-size:0.8rem;
  opacity:0.4;
}

/* ─── Template-specific gallery styles ─── */

.strip-container { display:flex; flex-direction:column; gap:2rem; overflow:hidden; padding:4rem 0; }
.strip { display:flex; gap:2rem; width:max-content; }
.frame { flex-shrink:0; width:500px; }
.frame-inner { height:300px; background:rgba(239,68,68,0.06); border:1px solid rgba(239,68,68,0.15); border-radius:8px; display:flex; flex-direction:column; justify-content:flex-end; padding:1.5rem; transition:all 0.4s ease; position:relative; overflow:hidden; }
.frame-inner::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; background:#ef4444; opacity:0; transition:opacity 0.3s; }
.frame:hover .frame-inner::before { opacity:1; }
.frame-label { font-family:'Inter',sans-serif; font-weight:600; font-size:1.1rem; }
.tc { font-family:'Fira Code',monospace; font-size:0.8rem; color:rgba(255,255,255,0.3); margin-top:0.5rem; }
.frame:hover .frame-inner { border-color:#ef4444; background:rgba(239,68,68,0.12); }
@keyframes scrollLeft { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes scrollRight { 0%{transform:translateX(-50%)} 100%{transform:translateX(0)} }
.scroll-left { animation:scrollLeft 25s linear infinite; }
.scroll-right { animation:scrollRight 30s linear infinite; }
.strip:hover { animation-play-state:paused; }
@media(max-width:768px){ .frame{width:300px;} .frame-inner{height:200px;} }
