body {
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
  background: black;
  color: white;
  text-align: center;
}

/* NAV */

nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px;
  background: rgba(0,0,0,0.95);
  z-index: 100;
}

nav a {
  margin: 0 12px;
  color: white;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2px;
  opacity: 0.7;
}

nav a:hover {
  opacity: 1;
}

/* HERO */

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("https://i.imgur.com/rQHOwXV.png") center/cover no-repeat;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), black);
}

.hero-title {
  font-size: 72px;
  letter-spacing: 10px;
}

.tagline {
  font-size: 13px;
  letter-spacing: 3px;
  opacity: 0.7;
}

/* SECTIONS */

.music {
  background: #0a0a0a;
  padding: 140px 20px;
}

.lore {
  background: #000;
  padding: 180px 20px;
}

.socials {
  background: #050505;
  padding: 120px 20px;
}

/* ICONS FIX */

.icon-links {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.icon-links img {
  width: 60px;
  height: auto;
  display: block;
  filter: brightness(1);
  transition: 0.3s ease;
}

.icon-links img:hover {
  transform: scale(1.2);
}

/* PORTAL WRAPPER */

.portal-wrapper {
  position: relative;
  display: inline-block;
}

/* SPINNING PORTAL RING */

.portal-wrapper::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(140,0,255,0.8),
    rgba(255,0,255,0.6),
    rgba(140,0,255,0.8)
  );

  filter: blur(20px);
  animation: spin 6s linear infinite;
  opacity: 0.6;
}

/* INNER PULSE */

.portal-wrapper::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180,100,255,0.6), transparent 70%);
  animation: pulse 2s infinite ease-in-out;
}

/* BUTTON */

.enter-button {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 20px 60px;
  letter-spacing: 5px;
  text-decoration: none;
  color: white;
  border: 1px solid rgba(180,100,255,0.8);
  background: rgba(0,0,0,0.6);
  transition: 0.3s;
}

.enter-button:hover {
  transform: scale(1.1);
}

/* ANIMATIONS */

@keyframes spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes pulse {
  0% { opacity: 0.3; }
  50% { opacity: 0.9; }
  100% { opacity: 0.3; }
}
/* YOUTUBE SECTION */

.youtube {
  background: #080808;
  padding: 140px 20px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: auto;
}

.video-grid img {
  width: 100%;
  border-radius: 6px;
  transition: 0.3s ease;
}

.video-grid img:hover {
  transform: scale(1.05);
}

/* FIND SECTION */

.find {
  background: #050505;
  padding: 140px 20px;
}

.platform-buttons {
  margin-bottom: 30px;
}

.platform-buttons a {
  display: inline-block;
  margin: 10px;
  padding: 14px 30px;
  text-decoration: none;
  letter-spacing: 2px;
  border-radius: 4px;
  font-size: 12px;
  transition: 0.3s;
}

/* Spotify */

.spotify {
  background: #1DB954;
  color: black;
}

/* Apple */

.apple {
  background: #ff2d55;
  color: white;
}

.platform-buttons a:hover {
  transform: scale(1.08);
}

/* MOBILE FIX */

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 40px;
  }
}
/* FIXED YOUTUBE */

.youtube h2 {
  margin-bottom: 60px;
}

/* BUTTON SIZE FIX */

.platform-buttons a {
  display: inline-block;
  width: 220px;
  padding: 16px 0;
  text-align: center;
  border-radius: 30px;
  font-weight: bold;
}

/* EMAIL SECTION */

.email {
  background: #020202;
  padding: 140px 20px;
}

.email-title {
  color: #c084ff;
  font-size: 20px;
  margin-bottom: 30px;
  line-height: 1.4;
}

.email-input {
  width: 260px;
  padding: 14px;
  border-radius: 25px;
  border: none;
  margin-bottom: 15px;
  text-align: center;
}

.email-button {
  display: block;
  margin: auto;
  padding: 14px 30px;
  border-radius: 25px;
  border: none;
  background: linear-gradient(45deg, #7a00ff, #c084ff);
  color: white;
  letter-spacing: 2px;
  cursor: pointer;
  transition: 0.3s;
}

.email-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(180,100,255,0.6);
}
/* TOUR PAGE */

.tour-container {
  max-width: 700px;
  margin: 120px auto 80px;
  font-family: Helvetica, Arial, sans-serif;
  color: #eee;
  text-align: center;
  padding: 0 20px;
}

.artist-name {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 0.35em;
  margin: 0 0 10px;
  color: #a855f7;

  text-shadow: 0 0 20px rgba(140,0,255,0.4);
}

.page-title {
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 40px;
  color: #ccc;
  letter-spacing: 0.2em;
}

.no-shows {
  background: radial-gradient(circle, #111, #000);
  padding: 50px 20px;
  border-radius: 12px;

  box-shadow:
    0 0 20px rgba(140,0,255,0.2),
    inset 0 0 20px rgba(140,0,255,0.1);
}

.no-shows h3 {
  margin: 0;
  font-size: 1.4em;
  color: #aaa;
  letter-spacing: 0.15em;
}

/* MOBILE */

@media (max-width: 640px) {
  .artist-name {
    font-size: 2.5rem;
    letter-spacing: 0.25em;
  }

  .page-title {
    font-size: 1.5rem;
  }
}
/* BIO HERO */

.bio-hero {
  position: relative;
  height: 100vh;
  background: url("https://i.imgur.com/3IUr54g.png") center 30% / cover no-repeat;
  display: flex;
  align-items: flex-start; /* move content to top */
  justify-content: center;
  padding-top: 12vh; /* pushes text down slightly from very top */
}

/* DARK OVERLAY */

.bio-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.6),
    rgba(0,0,0,0.85)
  );
}

/* TEXT */

.bio-text {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 20px;
}

.bio-text p {
  font-size: 18px;
  line-height: 1.7;
  color: #eee;
  text-align: center;

  text-shadow: 0 0 15px rgba(0,0,0,0.9);
}

/* MOBILE */

@media (max-width: 768px) {
  .bio-hero {
    background-position: center 20%;
    padding-top: 10vh;
  }

  .bio-text p {
    font-size: 16px;
  }
}
/* EPK HERO */

.epk-hero {
  text-align: center;
  padding-top: 100px;
}

.epk-hero img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

.epk-hero h1 {
  margin-top: 20px;
  letter-spacing: 8px;
}

/* BIO */

.epk-bio {
  max-width: 700px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
  line-height: 1.6;
}

/* STATS */

.epk-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;
}

.stat {
  text-align: center;
}

.stat h3 {
  letter-spacing: 2px;
  color: #a855f7;
}

.stat p {
  font-size: 14px;
}

/* SONGS */

.epk-songs {
  text-align: center;
  padding: 80px 20px;
}

.song-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.song {
  background: #111;
  padding: 20px;
  border-radius: 6px;
  width: 180px;
}

.song h4 {
  font-size: 14px;
}

.song p {
  color: #aaa;
}

.song-note {
  margin-top: 20px;
  font-size: 12px;
  opacity: 0.6;
}

/* TOUR */

.epk-tour {
  display: flex;
  gap: 40px;
  padding: 100px 20px;
  max-width: 1000px;
  margin: auto;
}

.tour-image img {
  width: 300px;
  border-radius: 6px;
}

.tour-text {
  text-align: left;
}

.tour-text h2 {
  margin-bottom: 20px;
}

/* MOBILE */

@media (max-width: 768px) {
  .epk-stats {
    flex-direction: column;
  }

  .song-grid {
    flex-direction: column;
    align-items: center;
  }

  .epk-tour {
    flex-direction: column;
    text-align: center;
  }

  .tour-text {
    text-align: center;
  }
}
/* ===== LORE TERMINAL ===== */

.lore-body {
  background: radial-gradient(circle at center, #050505 0%, #000000 70%);
  font-family: 'Courier New', monospace;
  color: #a855f7;
  overflow: hidden;
  height: 100vh;
  margin: 0;
}

/* Static intro */
#static-overlay {
  position: fixed;
  inset: 0;
  background: repeating-radial-gradient(circle, #fff 0, #000 2px);
  mix-blend-mode: difference;
  animation: staticFade 2.5s forwards;
  z-index: 9999;
}

@keyframes staticFade {
  0% {opacity: 1;}
  80% {opacity: 0.2;}
  100% {opacity: 0;}
}

/* Floating symbols */
.symbols {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.symbols span {
  position: absolute;
  font-size: 20px;
  opacity: 0.08;
  animation: float 12s linear infinite;
}

.symbols span:nth-child(1){top:10%; left:20%;}
.symbols span:nth-child(2){top:60%; left:70%;}
.symbols span:nth-child(3){top:80%; left:30%;}
.symbols span:nth-child(4){top:30%; left:80%;}
.symbols span:nth-child(5){top:50%; left:10%;}

@keyframes float {
  0% {transform: translateY(100px);}
  100% {transform: translateY(-100px);}
}

/* Terminal container */
.terminal-container {
  position: relative;
  z-index: 2;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

/* Typing */
.typing-container {
  font-size: 2rem;
  margin-bottom: 60px;
  text-shadow: 0 0 10px #a855f7;
}

/* File cards */
.file-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.file-card {
  border: 1px solid #a855f7;
  padding: 25px;
  width: 200px;
  cursor: pointer;
  text-align: center;
  background: rgba(20, 0, 30, 0.6);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.file-card h2 {
  margin-bottom: 10px;
  text-shadow: 0 0 8px #a855f7;
}

.file-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #a855f7;
}

/* Fade out transition */
.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* Mobile */
@media (max-width: 600px) {
  .typing-container {
    font-size: 1.4rem;
  }

  .file-card {
    width: 80%;
  }
}
/* ===== LOGS PAGE ===== */

.logs-body {
  background: radial-gradient(circle at center, #050505 0%, #000 80%);
  color: #a855f7;
  font-family: 'Courier New', monospace;
  margin: 0;
  overflow-x: hidden;
}

/* Header */
.logs-header {
  text-align: center;
  padding: 80px 20px 40px;
}

.logs-header h1 {
  font-size: 2.5rem;
  text-shadow: 0 0 12px #a855f7;
}

.logs-header p {
  opacity: 0.6;
}

/* Grid */
.logs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  padding: 20px 30px 60px;
}

/* Cards */
.log-card {
  cursor: pointer;
  overflow: hidden;
  border: 1px solid rgba(168,85,247,0.3);
  background: rgba(20, 0, 30, 0.4);
  transition: all 0.3s ease;
}

.log-card img {
  width: 100%;
  display: block;
  filter: brightness(0.8);
}

.log-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(168,85,247,0.6);
}

.log-card:hover img {
  filter: brightness(1);
}

/* Viewer */
.viewer {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.viewer.active {
  display: flex;
}

.viewer img {
  max-width: 90%;
  max-height: 90%;
  box-shadow: 0 0 40px #a855f7;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 30px;
  cursor: pointer;
  color: #fff;
}

/* Animation */
@keyframes floatUp {
  0% {transform: translateY(0); opacity: 0;}
  10% {opacity: 0.4;}
  90% {opacity: 0.4;}
  100% {transform: translateY(-130vh); opacity: 0;}
}
/* Arrows */
.viewer-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: #a855f7;
  cursor: pointer;
  padding: 20px;
  user-select: none;
  transition: 0.2s;
}

.viewer-arrow:hover {
  text-shadow: 0 0 15px #a855f7;
}

.viewer-arrow.left {
  left: 10px;
}

.viewer-arrow.right {
  right: 10px;
}
/* ===== TRANSMISSIONS UPGRADE ===== */

.transmissions-body {
  background: radial-gradient(circle at center, #050505 0%, #000 80%);
  color: #e5e5e5;
  font-family: 'Courier New', monospace;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
}

.transmission-box {
  max-width: 600px;
  padding: 40px;
  border: 1px solid rgba(168,85,247,0.4);
  background: rgba(15, 0, 25, 0.6);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 25px rgba(168,85,247,0.3);
  text-align: center;
}

/* Text styles */
.signal-title {
  color: #a855f7;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
  opacity: 0.6;
}

.main-line {
  font-size: 1.6rem;
  color: #a855f7;
  text-shadow: 0 0 10px #a855f7;
}

.italic {
  font-style: italic;
  color: #c084fc;
}

.help-line {
  margin-top: 30px;
  font-weight: bold;
  color: #a855f7;
  text-shadow: 0 0 10px #a855f7;
}

/* Button */
.accept-btn {
  margin-top: 40px;
  background: transparent;
  border: 1px solid #a855f7;
  color: #a855f7;
  padding: 12px 30px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.accept-btn:hover {
  background: #a855f7;
  color: black;
  box-shadow: 0 0 20px #a855f7;
}
/* ===== RIDDLE SYSTEM ===== */

.riddle-body {
  background: radial-gradient(circle at center, #050505 0%, #000 80%);
  color: #e5e5e5;
  font-family: 'Courier New', monospace;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
}

.riddle-container {
  max-width: 600px;
  padding: 40px;
  border: 1px solid rgba(168,85,247,0.4);
  background: rgba(15, 0, 25, 0.6);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 25px rgba(168,85,247,0.3);
  text-align: center;
}

.riddle-text {
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Input */
.riddle-container input {
  width: 80%;
  padding: 10px;
  margin-bottom: 15px;
  background: black;
  border: 1px solid #a855f7;
  color: #a855f7;
  text-align: center;
}

/* Button */
.riddle-container button {
  background: transparent;
  border: 1px solid #a855f7;
  color: #a855f7;
  padding: 10px 25px;
  cursor: pointer;
  transition: 0.3s;
}

.riddle-container button:hover {
  background: #a855f7;
  color: black;
  box-shadow: 0 0 20px #a855f7;
}

/* Feedback */
.feedback {
  margin-top: 10px;
  color: #a855f7;
  opacity: 0;
  transition: opacity 0.3s;
}

/* Success overlay */
.success-screen {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}

.success-screen.active {
  display: flex;
}

.success-screen p {
  max-width: 600px;
  line-height: 1.6;
}

.success-screen button {
  margin-top: 30px;
  background: transparent;
  border: 1px solid #a855f7;
  color: #a855f7;
  padding: 10px 25px;
  cursor: pointer;
}
/* rComplete extra section */

.next-section {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(168,85,247,0.3);
  text-align: center;
}

.logs-btn {
  margin-top: 15px;
  background: transparent;
  border: 1px solid #a855f7;
  color: #a855f7;
  padding: 10px 25px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.logs-btn:hover {
  background: #a855f7;
  color: black;
  box-shadow: 0 0 20px #a855f7;
}
/* Vertical layout */
.file-container.vertical {
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

/* Primary (TRANSMISSIONS) */
.file-card.primary {
  width: 260px;
  transform: scale(1.05);
  border: 1px solid #a855f7;
  box-shadow: 0 0 25px rgba(168,85,247,0.6);
}

/* Secondary (LOGS) */
.file-card.secondary {
  width: 220px;
  opacity: 0.6;
  border: 1px solid rgba(168,85,247,0.3);
}

.file-card.secondary:hover {
  opacity: 1;
}
/* NAV TEXT SIZE UPGRADE */

nav a {
  font-size: 1.2em; /* ~20% bigger */
}

/* Mobile boost (slightly more for readability) */
@media (max-width: 600px) {
  nav a {
    font-size: 1.35em;
  }
}