:root {
  --bg:           #0a0a0e;
  --surface:      #111116;
  --surface2:     #16161c;
  --text-main:    #d0d0da;
  --text-dim:     #8a8a9c;
  --text-muted:   #5c5c6e;
  --accent:       #ff5050;
  --accent-dim:   #5c1a1a;
  --accent-glow:  rgba(255,80,80,0.10);
  --border:       #1e1e28;
  --border-subtle:#252530;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text-main);
  font-family: "Courier New", Courier, monospace;
  line-height: 1.58;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeSpeed;
  padding: 0 4.5vw;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-style: none;
}

h1, h2 {
  font-weight: 400;
  line-height: 1.1;
}

.void-header {
  padding: 20vh 0 18vh;
  text-align: center;
}

h1 {
  font-size: clamp(4.8rem, 9vw, 10.5rem);
  letter-spacing: -0.05em;
  color: #fff;
  text-shadow: 0 6px 32px #000c;
}

.subtitle {
  margin-top: 4vh;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.ad-container {
  margin: 8vh 0 20vh;
  width: 1060px;
  max-width: 100%;
}

.ad-container img {
  border: 1px solid var(--accent-dim);
  background: var(--surface);
  box-shadow: 0 0 32px var(--accent-glow);
  transform: translateX(-4vw) rotate(-0.6deg);
  will-change: transform, box-shadow;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ad-container img:hover {
  transform: translateX(-4vw) rotate(-0.3deg) scale(1.006);
  box-shadow: 0 0 48px var(--accent-glow);
}

.mirrors {
  max-width: 760px;
  margin: 0 auto 28vh;
}

.mirrors h2 {
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 1.8rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}

.mirror-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.mirror-item {
  font-size: 1.05rem;
  color: var(--text-dim);
  word-break: break-all;
  padding: 0.9rem 1.3rem;
  border-left: 3px solid var(--accent-dim);
  background: var(--surface);
  transition: all 0.2s ease;
  will-change: transform, background, border-color;
}

.mirror-item:hover {
  color: var(--text-main);
  border-left-color: var(--accent);
  background: var(--surface2);
  transform: translateX(3px);
}

.mirror-info {
  margin-top: 2.8rem;
  font-size: 0.94rem;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.06em;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 22vh;
  margin-bottom: 45vh;
}

.section {
  max-width: 840px;
  margin: 0 auto;
}

.section h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: #fff;
  margin-bottom: 1.6rem;
  letter-spacing: 0.12em;
}

.section p {
  font-size: 1.04rem;
  color: var(--text-dim);
  margin-bottom: 1.4rem;
}

.conclusion {
  text-align: center;
}

.conclusion h2 {
  color: var(--accent);
  margin-bottom: 2.4rem;
}

figure.shot {
  text-align: center;
}

figure.shot img {
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 10px 48px #000b, inset 0 0 72px #0004;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
  will-change: box-shadow, transform;
}

figure.shot img:hover {
  box-shadow: 0 16px 72px #000c, inset 0 0 96px #0005;
  transform: scale(1.005);
}

.shot-big  img { max-width: 880px; }
.shot      img { max-width: 680px; }
.shot-small img { max-width: 460px; }

figcaption {
  margin-top: 1.8rem;
  font-size: 0.98rem;
  color: var(--text-muted);
  letter-spacing: 0.18em;
}

.shot-big figcaption {
  color: var(--accent);
  font-size: 1.12rem;
  letter-spacing: 0.42em;
}

.void-footer {
  height: 48vh;
}