/* ============================
   BRUTALIST PRANK — STYLE.CSS
   ============================ */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

/* HIDE ALL SCROLLBARS */
body, html {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
body::-webkit-scrollbar,
html::-webkit-scrollbar {
  display: none;
}

body {
  font-family: 'Space Mono', monospace;
  background: #fffbe6;
  color: #1a1a1a;
  overflow-x: hidden;
  cursor: crosshair;
}

/* ===== SCENE MANAGEMENT ===== */
.scene {
  display: none !important;
  position: relative;
}
.scene.active {
  display: block !important;
}

/* ===== NOISE / SCATTERED TEXT ===== */
.noise-text {
  position: absolute;
  font-family: 'Space Mono', monospace;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #ff3366;
  opacity: 0.25;
  pointer-events: none;
  letter-spacing: 0.08em;
  white-space: nowrap;
  z-index: 0;
}

/* ===== SCENE 1: LANDING ===== */
#scene-landing {
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #fffbe6;
  border-bottom: 6px solid #1a1a1a;
}
#scene-landing.active {
  display: flex !important;
}

.landing-content {
  max-width: 420px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 1;
}

.sticker {
  display: inline-block;
  background: #1a1a1a;
  color: #fffbe6;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 8px 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
  transform: rotate(-2deg);
  border: 3px solid #1a1a1a;
}

.big-question {
  font-family: 'Dela Gothic One', sans-serif;
  font-size: 3.2rem;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.highlight {
  background: #ff3366;
  color: #fffbe6;
  padding: 0 8px;
  display: inline;
  text-decoration: none;
}

.sub-q {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 32px;
}

/* BUTTONS */
.btn-zone {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.btn {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 18px 32px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: transform 0.1s ease;
  border: 4px solid #1a1a1a;
  outline: none;
  width: 100%;
  max-width: 320px;
}

.btn:active {
  transform: scale(0.96);
}

.btn-fat {
  background: #1a1a1a;
  color: #fffbe6;
}

.btn-fat:hover {
  background: #ff3366;
  border-color: #ff3366;
}

.btn-outline {
  background: transparent;
  color: #1a1a1a;
}

.btn-outline:hover {
  background: #ffe066;
}

#btn-no {
  position: relative;
  transition: top 0.12s cubic-bezier(0.34, 1.56, 0.64, 1),
              left 0.12s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 10;
}

.fine-print {
  margin-top: 20px;
  font-size: 0.8rem;
  color: #bbb;
  letter-spacing: 0.05em;
}

/* ===== SCENE 2: SCROLL ===== */
#scene-scroll {
  padding: 0 20px;
  padding-bottom: 100px;
  background: #fffbe6;
}

.scroll-start-msg {
  text-align: center;
  padding: 80px 20px 60px;
  font-family: 'Dela Gothic One', sans-serif;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: #1a1a1a;
  animation: bobble 2s ease-in-out infinite;
}

@keyframes bobble {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* CHAT-STYLE TEXT BLOCKS */
.text-block {
  max-width: 92%;
  padding: 18px;
  border: 4px solid #1a1a1a;
  background: #fff;
  position: relative;

  /* hidden state */
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.text-block.show {
  opacity: 1;
  transform: translateY(0);
}

.blk-left {
  margin-right: auto;
  transform-origin: left center;
  border-left: 8px solid #ff3366;
}

.blk-right {
  margin-left: auto;
  text-align: right;
  transform-origin: right center;
  border-right: 8px solid #3366ff;
}

.who {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 6px;
}

.blk-left .who { color: #ff3366; }
.blk-right .who { color: #3366ff; }

.what {
  font-size: 1.05rem;
  line-height: 1.5;
}

/* BIG SCATTERED YELLING TEXT */
.big-scattered {
  font-family: 'Dela Gothic One', sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.15;
  padding: 20px;
  color: #1a1a1a;
  position: relative;

  opacity: 0;
  transform: scale(0.8) rotate(-2deg);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.big-scattered.show {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.big-scattered::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 10%;
  right: 10%;
  height: 6px;
  background: #ff3366;
}

/* FILLER / KEEP GOING TEXT */
.filler-text {
  text-align: center;
  font-size: 1rem;
  color: #999;
  text-transform: lowercase;
  font-style: italic;
  padding: 10px 0;

  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.filler-text.show {
  opacity: 1;
  transform: translateY(0);
}

/* ASCII ZONE */
#reveal-zone {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

#reveal-zone.show {
  opacity: 1;
  transform: translateY(0);
}

.ascii-box {
  border: 6px solid #1a1a1a;
  background: #fff;
  padding: 24px 16px;
  text-align: center;
}

.ascii-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  color: #999;
}

.ascii-gorilla {
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  line-height: 1.3;
  color: #1a1a1a;
  text-align: left;
  display: inline-block;
  margin-bottom: 24px;
  background: #fffbe6;
  padding: 12px;
  border: 3px dashed #ccc;
}

.btn-reveal {
  background: #ff3366;
  border-color: #ff3366;
  color: #fff;
  animation: pulse-reveal 1.5s infinite;
}

@keyframes pulse-reveal {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); box-shadow: 0 0 0 6px rgba(255, 51, 102, 0.2); }
}

/* ===== SCENE 3: REVEAL ===== */
#scene-reveal {
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #fffbe6;
}
#scene-reveal.active {
  display: flex !important;
}

.reveal-content {
  max-width: 420px;
  width: 100%;
  text-align: center;
}

.gotcha-title {
  font-family: 'Dela Gothic One', sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 12px;
  animation: shake-it 0.4s ease-in-out 3;
}

@keyframes shake-it {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px) rotate(-2deg); }
  75% { transform: translateX(6px) rotate(2deg); }
}

.gotcha-sub {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 28px;
}

.meme-frame {
  border: 6px solid #1a1a1a;
  background: #fff;
  padding: 8px;
  margin-bottom: 12px;
}

#meme-img {
  width: 100%;
  display: block;
}

.meme-caption {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ff3366;
  padding: 8px 0 4px;
  text-align: center;
}

/* ===== CONFETTI ===== */
#confetti-box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 200;
  overflow: hidden;
}

.confetti-bit {
  position: absolute;
  top: -20px;
  animation: drop linear forwards;
}

@keyframes drop {
  0% { transform: translateY(0) rotate(0deg); opacity: 1; }
  100% { transform: translateY(110vh) rotate(900deg); opacity: 0.6; }
}

/* ===== SCREEN SHAKE UTIL ===== */
.shaking {
  animation: page-shake 0.5s ease;
}

@keyframes page-shake {
  0%, 100% { transform: translate(0,0) rotate(0); }
  10% { transform: translate(-4px, 3px) rotate(-1deg); }
  30% { transform: translate(5px, -4px) rotate(1deg); }
  50% { transform: translate(-3px, -2px) rotate(0deg); }
  70% { transform: translate(4px, 3px) rotate(1deg); }
  90% { transform: translate(-2px, 2px) rotate(-1deg); }
}
