﻿:root {
  --pink: #ff2bd6;
  --cyan: #33f6ff;
  --yellow: #fff600;
  --green: #39ff14;
  --blue: #001b6b;
  --purple: #6a00ff;
  --black: #090014;
  --panel-bg: rgba(0, 0, 0, 0.78);
  --panel-alt: rgba(0, 20, 40, 0.75);
  --border: 6px ridge var(--yellow);
  --shadow: 0 0 0 4px var(--pink), 0 0 0 8px var(--cyan);
  --glow: 0 0 12px rgba(0, 255, 255, 0.6);
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Comic Sans MS", "Trebuchet MS", Verdana, sans-serif;
  color: var(--green);
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 0, 0.25), transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(0, 255, 255, 0.2), transparent 35%),
    repeating-linear-gradient(45deg, #ff00ff 0 12px, #00ffff 12px 24px, #ffff00 24px 36px),
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0 2px, rgba(255, 255, 255, 0.15) 2px 4px);
  background-blend-mode: multiply;
  overflow-x: hidden;
  cursor: crosshair;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--yellow);
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px;
}

.panel {
  border: var(--border);
  background: var(--panel-bg);
  box-shadow: var(--shadow);
  padding: 14px;
}

.panel.alt {
  background: var(--panel-alt);
}

.header {
  display: grid;
  gap: 12px;
  text-align: center;
  justify-items: center;
  position: relative;
}

.site-title {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
}

.sub-title {
  margin: 6px 0 0;
  color: #f8f6ff;
  text-shadow: 2px 2px 0 #000;
}

.subtitle {
  text-align: center;
  color: #f8f6ff;
  margin-bottom: 16px;
  text-shadow: 1px 1px 0 #000;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.nav-link {
  display: inline-block;
  padding: 6px 10px;
  background: #0000ff;
  color: #ffff00;
  border: 4px outset var(--pink);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1px;
}

.nav-link:hover {
  background: #ff0000;
  color: #00ffff;
  border-style: inset;
}

.nav-link.active {
  background: #00ff00;
  color: #000;
}

.rainbow {
  font-weight: 900;
  text-shadow: 2px 2px 0 #000, 4px 4px 0 #fff;
  animation: hue 1.2s linear infinite;
}

.invite-text {
  font-size: clamp(16px, 2.6vw, 22px);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 6px 0;
  color: var(--yellow);
}

@keyframes hue {
  to { filter: hue-rotate(360deg); }
}

.blink {
  animation: blink 0.8s steps(2, start) infinite;
}

@keyframes blink {
  to { visibility: hidden; }
}

.marquee {
  border: 6px groove #fff;
  background: #000;
  color: var(--yellow);
  overflow: hidden;
  white-space: nowrap;
  padding: 6px 0;
  font-weight: 900;
  text-shadow: 1px 1px 0 #000;
}

.marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 18s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.grid-2 {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  border: 4px outset var(--cyan);
  background: #111;
  color: var(--yellow);
  padding: 6px 10px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
}

.btn {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 18px;
  padding: 10px 14px;
  border: 6px outset var(--cyan);
  background: #ff0000;
  color: #ffff00;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}


.btn.secondary {
  background: #00f;
  border-color: var(--yellow);
  color: #fff600;
}

.btn:active {
  border-style: inset;
}

.kicker {
  display: inline-block;
  padding: 4px 8px;
  border: 4px groove var(--pink);
  background: rgba(255, 255, 0, 0.2);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.kicker-toggle {
  cursor: pointer;
}

.kicker-toggle:focus {
  outline: 2px dashed var(--cyan);
  outline-offset: 4px;
}

.list {
  margin: 8px 0 0;
  padding-left: 18px;
}

.list li {
  margin-bottom: 6px;
}

label {
  display: inline-block;
  margin-bottom: 4px;
  font-weight: 900;
  color: var(--yellow);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 10px;
  text-align: center;
}

.countdown-sticky {
  position: sticky;
  top: 12px;
  margin: 12px 0 0;
  width: 100%;
  z-index: 3;
}

.count-box {
  border: 6px inset var(--cyan);
  background: #000;
  padding: 10px;
  color: var(--yellow);
  text-shadow: 2px 2px 0 #000;
}

.count-num {
  font-size: 28px;
  font-weight: 900;
}

.count-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.idea-box {
  border: 8px double var(--green);
  background: rgba(255, 0, 255, 0.15);
  padding: 12px;
  min-height: 90px;
  display: grid;
  align-content: center;
  font-size: 18px;
  font-weight: 700;
}

.idea-pop {
  animation: ideaPop 0.5s ease;
}

@keyframes ideaPop {
  0% { transform: scale(0.9) rotate(-1deg); }
  60% { transform: scale(1.04) rotate(1deg); }
  100% { transform: scale(1) rotate(0deg); }
}

.form-row {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.input, textarea {
  width: 100%;
  padding: 8px;
  border: 4px inset var(--pink);
  background: #fff;
  color: #000;
  font-family: "Courier New", monospace;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.helper {
  font-size: 12px;
  color: #ffb3ff;
}

.idea-callout {
  font-size: 18px;
  font-weight: 900;
  color: var(--yellow);
  text-shadow: 2px 2px 0 #000;
  margin-top: 10px;
}

.chat-log {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.chat-post {
  border: 6px inset var(--yellow);
  padding: 8px;
  background: rgba(0, 0, 0, 0.6);
}

.chat-meta {
  font-size: 12px;
  color: #ffb3ff;
  margin-bottom: 4px;
}

.hr {
  height: 12px;
  background: repeating-linear-gradient(90deg, #ff0000 0 10px, #00ff00 10px 20px, #0000ff 20px 30px, #ffff00 30px 40px);
  border: 4px groove #fff;
  margin: 12px 0;
}

.tips-grid {
  display: grid;
  gap: 12px;
}

.accordion {
  display: grid;
  gap: 8px;
}

.acc-item {
  border: 6px ridge var(--cyan);
  background: rgba(0, 0, 0, 0.6);
}

.acc-header {
  cursor: pointer;
  padding: 10px 12px;
  font-weight: 900;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.acc-body {
  padding: 0 12px 12px;
  display: none;
  color: #e8f9ff;
}

.acc-item.open .acc-body {
  display: block;
}

.acc-item.open .acc-header span {
  transform: rotate(90deg);
}

.copy-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.copy-btn {
  border: 4px outset var(--yellow);
  background: #0000ff;
  color: #ffff00;
  padding: 6px 8px;
  font-weight: 900;
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
}

.copy-btn:active { border-style: inset; }

.prompt-builder {
  display: grid;
  gap: 10px;
}

.output-box {
  border: 6px inset var(--green);
  background: #000;
  color: #fff;
  padding: 10px;
  min-height: 80px;
  font-family: "Courier New", monospace;
  white-space: pre-wrap;
}

.trail {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  font-size: 16px;
  will-change: transform, opacity;
  text-shadow: 1px 1px 0 #000;
  animation: trail 900ms linear forwards;
}

@keyframes trail {
  from { opacity: 1; transform: translate(0,0) rotate(0deg) scale(1.2); }
  to { opacity: 0; transform: translate(0,-40px) rotate(360deg) scale(0.2); }
}

.footer {
  text-align: center;
  font-size: 12px;
  color: #ffb3ff;
}

.secret-panel {
  background: rgba(0, 0, 0, 0.85);
}

.hack-console {
  background: #000;
  color: #39ff14;
  border: 6px inset var(--green);
  padding: 10px;
  min-height: 120px;
  font-family: \"Courier New\", monospace;
  font-size: 14px;
  margin: 10px 0;
  overflow: auto;
  white-space: pre-wrap;
}

.gif-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.gif-grid img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  border: 4px groove var(--pink);
  background: rgba(0, 0, 0, 0.6);
}

@media (max-width: 760px) {
  .nav { justify-content: center; }
  .btn { width: 100%; justify-content: center; }
  .page { padding: 12px; }
  .countdown-sticky {
    position: static;
    margin-top: 12px;
  }
  .countdown {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }
  .count-box {
    padding: 8px 6px;
  }
  .count-num {
    font-size: 18px;
  }
  .count-label {
    font-size: 10px;
  }
  .idea-callout {
    font-size: 16px;
    text-align: center;
  }
}
