@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;700;900&family=IBM+Plex+Mono:wght@300;400&display=swap');

:root {
  --black: #0a0a0a;
  --white: #f5f5f0;
  --pink: #FF0066;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'IBM Plex Mono', monospace;
  cursor: crosshair;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ZEBRA CANVAS */
#zebraCanvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  opacity: 0.06;
  pointer-events: none;
}

/* SCROLL LINE */
.scroll-line {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--pink);
  z-index: 999;
  width: 0%;
  transition: width 0.1s linear;
}

/* NAV */
nav {
  position: relative;
  z-index: 100;
  padding: 32px 48px;
  display: flex;
  gap: 40px;
  align-items: center;
  border-bottom: 1px solid rgba(245,245,240,0.07);
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
}

nav a {
  font-family: 'Unbounded', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--pink);
  transition: width 0.3s;
}

nav a:hover { opacity: 1; }
nav a:hover::after { width: 100%; }
nav a.active { opacity: 1; color: var(--pink); }

/* PAGE TITLE */
.page-title {
  position: relative;
  z-index: 1;
  padding: 64px 48px 48px;
  border-bottom: 1px solid rgba(245,245,240,0.07);
}

.page-title h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(40px, 8vw, 96px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.9;
}

/* POEMS GRID */
.poems-container {
  position: relative;
  z-index: 1;
  padding: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2px;
}

.poem-card {
  background: rgba(245,245,240,0.02);
  border: 1px solid rgba(245,245,240,0.06);
  padding: 40px;
  transition: background 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.poem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 0;
  background: var(--pink);
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.poem-card:hover { background: rgba(245,245,240,0.04); border-color: rgba(245,245,240,0.12); }
.poem-card:hover::before { height: 100%; }

.poem-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 28px;
  color: var(--pink);
}

.poem-text {
  font-size: 13px;
  line-height: 2.1;
  opacity: 0.92;
  white-space: pre-line;
  font-weight: 300;
}

.poem-placeholder {
  font-size: 10px;
  opacity: 0.15;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: 'Unbounded', sans-serif;
}

/* FOOTER */
footer {
  position: relative;
  z-index: 1;
  padding: 48px;
  border-top: 1px solid rgba(245,245,240,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 80px;
}

.footer-copy {
  font-size: 10px;
  opacity: 0.3;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-copy span { color: var(--pink); opacity: 1; }

.social-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.social-links a {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  opacity: 0.3;
  transition: opacity 0.2s, color 0.2s;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
}

.social-links a:hover { opacity: 1; color: var(--pink); }

/* MOBILE */
@media (max-width: 768px) {
  nav { padding: 20px 24px; gap: 16px; flex-wrap: wrap; }
  .page-title { padding: 40px 24px 32px; }
  .poems-container { padding: 24px; grid-template-columns: 1fr; }
  footer { padding: 32px 24px; flex-direction: column; align-items: flex-start; }
}


details summary {
    display: block !important;
    list-style: none !important;
    list-style-type: none !important;
}

details summary::-webkit-details-marker,
details summary::marker {
    display: none !important;
}

details summary::before,
details[open] summary::before {
    content: "" !important;
    display: none !important;
}


