@import url("../../../assets/ascii-skin.css");

:root {
  color-scheme: dark;
  --bg: #090b0f;
  --panel: #10141b;
  --panel-2: #151a23;
  --ink: #f5f0e8;
  --muted: #aab1bd;
  --line: #2a3140;
  --accent: #ff7aa8;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
}

a { color: inherit; }

a:focus-visible,
iframe:focus-visible {
  outline: 3px solid #f3c969;
  outline-offset: 3px;
}

header {
  position: sticky;
  top: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(9, 11, 15, 0.92);
  backdrop-filter: blur(14px);
}

header strong {
  font-size: 18px;
}

header a {
  color: var(--accent);
  font-weight: 780;
}

.directory-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 14px;
}

.directory-nav::before {
  content: "/pva/2024-2025";
  margin-right: 0.25rem;
  color: var(--accent);
  font-weight: 760;
}

.directory-nav a,
.directory-nav span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 0.35rem;
  border-radius: 4px;
  text-decoration: none;
}

.directory-nav a::before,
.directory-nav span::before {
  content: "/";
  margin-right: 0.35rem;
  color: var(--line);
}

.directory-nav a:hover,
.directory-nav span[aria-current="page"] {
  color: var(--ink);
  background: rgba(255, 122, 168, 0.12);
}

main {
  padding: clamp(28px, 5vw, 72px) clamp(18px, 4vw, 56px) 64px;
}

section {
  max-width: 1180px;
  margin: 0 auto 42px;
}

.hero {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.hero p {
  max-width: 760px;
  color: var(--muted);
}

.hero p:first-child {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 12px;
  font-size: 26px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}

.rhythm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}

article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

article p {
  color: var(--muted);
}

.rhythm-card {
  display: grid;
  align-content: start;
  gap: 8px;
}

.rhythm-card span {
  color: var(--accent);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.rhythm-card h2,
.rhythm-card p {
  margin: 0;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.links a {
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  font-weight: 720;
  text-decoration: none;
}

.links a.primary {
  border-color: rgba(255, 122, 168, 0.62);
  color: var(--accent);
}

.slides {
  width: 100%;
  min-height: 78vh;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-2);
}
