* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Courier New', monospace;
  background: #0b0b0f;
  color: #ff66cc;
  overflow-x: hidden;
  cursor: url('https://cur.cursors-4u.net/cursors/cur-13/cur1130.cur'), crosshair;
  animation: bgPulse 20s ease-in-out infinite;
}

@keyframes bgPulse {
  0% { background-color: #0b0b0f; }
  50% { background-color: #14001a; }
  100% { background-color: #0b0b0f; }
}

/* --- Background particles --- */
#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
}

/* --- Console container --- */
#console {
  max-width: 800px;
  margin: auto;
  padding: 2rem;
  text-align: center;
  animation: fadeIn 2s ease;
}

/* --- Headings --- */
h1 {
  color: #ff0099;
  font-size: 1.8rem;
  animation: glitch 2s infinite;
  position: relative;
}

@keyframes glitch {
  0% { text-shadow: 2px 0 #00fff7, -2px 0 #ff00ff; }
  20% { text-shadow: -2px 2px #00fff7, 2px -2px #ff00ff; }
  40% { text-shadow: 1px 1px #00fff7, -1px -1px #ff00ff; }
  60% { text-shadow: 3px -1px #00fff7, -3px 1px #ff00ff; }
  80% { text-shadow: -2px 2px #00fff7, 2px -2px #ff00ff; }
  100% { text-shadow: 2px 0 #00fff7, -2px 0 #ff00ff; }
}

/* --- Link grid --- */
.link-grid {
  display: grid;
  gap: 1.2rem;
  margin: 2.5rem 0;
}

/* --- Glow buttons --- */
.glow-btn {
  display: block;
  background: linear-gradient(145deg, #1a1a2e, #2a003f);
  padding: 1rem;
  text-decoration: none;
  color: #fff;
  border: 2px solid #ff00ff;
  text-align: center;
  font-size: 1.1rem;
  border-radius: 8px;
  box-shadow: 0 0 10px #ff00ff88;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.glow-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 0, 255, 0.4), transparent);
  transform: skewX(-30deg);
  transition: left 0.5s;
}

.glow-btn:hover::before {
  left: 125%;
}

.glow-btn:hover {
  background: #ff00ff;
  color: #0b0b0f;
  box-shadow: 0 0 25px #ff00ffcc;
  transform: scale(1.03);
}

/* --- Glow links --- */
.glow-link {
  color: #ff00ff;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.glow-link:hover {
  text-shadow: 0 0 8px #ff00ff;
  color: #ffffff;
}

/* --- Tribute Panel --- */
.tribute-panel {
  margin-top: 2rem;
  padding: 1.5rem;
  text-align: center;
}

.glass {
  background: rgba(255, 0, 255, 0.07);
  border: 1px solid #ff00ff55;
  border-radius: 12px;
  box-shadow: 0 0 15px #ff00ff44;
  backdrop-filter: blur(12px);
}

/* --- Footer --- */
footer {
  text-align: center;
  font-size: 0.9em;
  color: #999;
  padding: 2em 0;
  border-top: 1px solid #333;
  z-index: 2;
  position: relative;
}

footer a {
  color: #ff4fa3;
  text-decoration: none;
  margin: 0 0.3em;
}

footer a:hover {
  text-decoration: underline;
}

/* --- AGE GATE (Full Screen, Animated) --- */
#ageGate {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at center, #0b0b0f 60%, #14001a 100%);
  color: #ffb3ff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  text-align: center;
  padding: 2rem;
  backdrop-filter: blur(10px);
  animation: fadeInGate 1s ease forwards;
}

@keyframes fadeInGate {
  from { opacity: 0; transform: scale(1.02); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes fadeOutGate {
  from { opacity: 1; transform: scale(1); }
  to { opacity: 0; transform: scale(1.03); }
}

#ageGate h2 {
  font-size: 1.9rem;
  margin-bottom: 1rem;
  color: #ff4fa3;
  text-shadow: 0 0 15px #ff00ff, 0 0 30px #ff4fa3;
  animation: glitch 2s infinite;
}

#ageGate p {
  max-width: 520px;
  margin: 1em auto 2em;
  line-height: 1.5;
  color: #ffccff;
  font-size: 1.05rem;
  text-shadow: 0 0 4px #ff00ff66;
}

.age-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

#ageGate button {
  background: linear-gradient(135deg, #ff00ff, #ff4fa3);
  border: 2px solid #ff00ff;
  border-radius: 8px;
  padding: 0.9em 1.6em;
  font-weight: bold;
  color: #0b0b0f;
  font-family: 'Courier New', monospace;
  font-size: 1rem;
  text-transform: uppercase;
  box-shadow: 0 0 15px #ff00ff55, inset 0 0 10px #ff00ff33;
  transition: all 0.3s ease;
  appearance: none;
}
#ageGate button:hover {
  background: #ff66cc;
  color: #000;
  transform: scale(1.05);
  box-shadow: 0 0 25px #ff00ffcc, 0 0 45px #ff4fa3aa;
}
#ageGate button.exit {
  background: none;
  color: #ff66cc;
  border: 2px solid #ff66cc;
}
#ageGate button.exit:hover {
  background: #ff66cc;
  color: #000;
}

/* --- COOKIE BANNER (Glass Panel Glow) --- */
#cookieBanner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 640px;
  background: rgba(15, 0, 25, 0.95);
  color: #ffd6ff;
  border: 1px solid #ff00ff55;
  border-radius: 10px;
  box-shadow: 0 0 25px #ff00ff33;
  padding: 1.2rem 1rem;
  font-size: 0.95rem;
  text-align: center;
  z-index: 9999;
  backdrop-filter: blur(10px);
  animation: slideUp 0.8s ease forwards;
}

@keyframes slideUp {
  from { opacity: 0; transform: translate(-50%, 100%); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

#cookieBanner a {
  color: #ff66cc;
  text-decoration: underline;
  font-weight: bold;
}
#cookieBanner a:hover {
  color: #fff;
  text-shadow: 0 0 8px #ff00ff;
}

#cookieBanner button {
  margin-left: 1em;
  background: linear-gradient(135deg, #ff00ff, #ff4fa3);
  color: #0b0b0f;
  border: 2px solid #ff00ff;
  padding: 0.5em 1.2em;
  border-radius: 6px;
  font-weight: bold;
  font-family: 'Courier New', monospace;
  cursor: pointer;
  transition: all 0.25s ease;
  appearance: none;
  box-shadow: 0 0 12px #ff00ff55;
}
#cookieBanner button:hover {
  background: #ff66cc;
  box-shadow: 0 0 20px #ff00ffcc;
  transform: scale(1.05);
}

/* --- Text fade --- */
#bio {
  font-size: 1rem;
  margin-top: 1rem;
  font-style: italic;
  color: #ffffffaa;
  animation: fadeIn 3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
