* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  background: #000;
  overflow: hidden;
  font-family: 'Space Grotesk', sans-serif;
  color: #fff;
}

a {
  color: #8a8a8a;
  text-decoration: none;
}

a:visited {
  color: #8a8a8a;
}

a:hover {
  color: #b0b0b0;
}

/* ENTER SCREEN */
.enter-screen {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
}

.enter-content {
  text-align: center;
}

.enter-text {
  font-family: 'Anton', sans-serif;
  font-size: clamp(80px, 20vw, 260px);
  color: #ff0000;
  letter-spacing: 8px;
}

.enter-sub {
  display: block;
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: 4px;
  opacity: 0.6;
}

/* ESCONDER SITE */
.hidden {
  opacity: 0;
  pointer-events: none;
}

/* FUNDO HATE THIS */
.hate-bg {
  position: fixed;
  inset: -200%;
  z-index: 1;
  pointer-events: none;
}

.hate-bg::before {
  content: "HATE THIS HATE THIS HATE THIS HATE THIS HATE THIS ";
  position: absolute;
  inset: 0;
  font-family: 'Anton', sans-serif;
  font-size: 14vw;
  line-height: 0.9;
  color: rgba(255, 0, 0, 0.06);
  word-break: break-word;
  animation: hateMove 35s linear infinite;
}

@keyframes hateMove {
  from { transform: translate(0, 0); }
  to { transform: translate(-600px, -600px); }
}

/* NOISE */
#noise {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.08;
}

/* SITE */
.hero {
  position: relative;
  z-index: 5;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.logo {
  font-family: 'Anton', sans-serif;
  font-size: clamp(120px, 22vw, 360px);
  line-height: 0.75;
  color: #ff0000;
  margin-bottom: 60px;
}



.shop {
  position: relative;
  z-index: 10;
  text-decoration: none;
  color: #ededed;
  font-size: 22px;
  letter-spacing: 10px;
  border: 2px solid rgba(255,255,255,0.35);
  padding: 16px 40px;
  margin-bottom: 60px;
  transition: all 0.15s ease;
}

.shop:hover {
  background: #e90707;
  border-color: #e90707;
  color: #000;
}

.manifesto {
  font-size: 12px;
  letter-spacing: 4px;
  opacity: 0.65;
}

/* TRANSIÇÃO */
.transition {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 20;
  pointer-events: none;
  opacity: 0;
}

.transition.active {
  animation: dirtyExit 0.45s steps(2) forwards;
}

@keyframes dirtyExit {
  0% { opacity: 0; }
  20% { opacity: 1; background: #ff0000; }
  40% { background: #000; }
  60% { background: #ff0000; }
  100% { opacity: 1; background: #000; }
}

/* NÃO CLIQUE */
.dont-click {
  position: fixed;
  bottom: 18px;
  right: 22px;
  font-size: 10px;
  letter-spacing: 3px;
  opacity: 0.35;
  cursor: pointer;
  z-index: 9;
  transition: opacity 0.2s;
}

.dont-click:hover {
  opacity: 0.8;
}

/* ARCHIVE OVERLAY */
.archive {
  position: fixed;
  inset: 0;
  z-index: 15;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(3px);
}

.archive-grid {
  position: absolute;
  inset: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  padding: 80px;
  align-content: center;
  justify-content: center;
}

.archive-grid img {
  width: 240px;
  filter: contrast(1.2) saturate(0.7) brightness(0.7);
  transform: rotate(var(--r));
  opacity: 0.85;
}

/* ===========================
   ARCHIVE PAGE
=========================== */

.archive-page {
  position: relative;
  z-index: 5;
  min-height: 100vh;
  padding: 120px 20px 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.archive-stack {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.archive-stack img {
  width: 100%;
  filter: contrast(1.15) saturate(0.65) brightness(0.7);
  opacity: 0.9;
}

/* BOTÃO VOLTAR */
.back-btn {
  margin-top: 140px;
  font-size: 10px;
  letter-spacing: 4px;
  opacity: 0.35;
  transition: opacity 0.2s;
  color: #8a8a8a;
}

.back-btn:hover {
  opacity: 0.8;
}

.archive-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.links {
  display: flex;
  gap: 18px;
  margin-top: 28px;
}

/* círculo minimal */
.social-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #ff0000;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: 
    opacity .2s ease,
    transform .15s ease,
    box-shadow .15s ease;
}

.social-circle:hover {
  opacity: 1;
  transform: scale(1.06);
  box-shadow: 0 0 10px rgba(255,0,0,0.25);
}

/* ícone seco */
.social-icon {
  width: 18px;
  height: 18px;
  fill: #ff0000;
}
