/* =========================================================
   GLOBAL RESET + BASE
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: #000;
  color: #fff;
  overflow-x: hidden;
  position: relative;
}


/* ===== BACKGROUND LAYERS ===== */

body {
  background: #000;
  overflow-x: hidden;
}

/* Starfield */
.stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent url('https://i.imgur.com/9yG7z4F.png') repeat;
  animation: starScroll 60s linear infinite;
  z-index: -3;
  opacity: 0.4;
}

@keyframes starScroll {
  from { background-position: 0 0; }
  to { background-position: 0 2000px; }
}

/* ===== AURORA BACKGROUND ===== */
.aurora {
  position: fixed;
  top: -20%;
  left: 0;
  width: 100%;
  height: 70%;
  pointer-events: none;
  z-index: -2;

  background:
    radial-gradient(circle at 20% 80%, rgba(0,255,200,0.25), transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(0,150,255,0.25), transparent 60%),
    radial-gradient(circle at 50% 120%, rgba(0,255,150,0.25), transparent 60%);

  filter: blur(70px);
  animation: auroraShift 12s ease-in-out infinite alternate;
}
/* ===== STARFIELD CANVAS ===== */
#star-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
}

@keyframes auroraShift {
  0% {
    transform: translateX(-10%) translateY(0);
    filter: hue-rotate(0deg) blur(70px);
  }
  100% {
    transform: translateX(10%) translateY(5%);
    filter: hue-rotate(90deg) blur(70px);
  }
}


@keyframes auroraMove {
  0% { transform: translateX(-10%) translateY(0); }
  100% { transform: translateX(10%) translateY(5%); }
}

/* Shooting stars */
.shooting-star {
  position: fixed;
  top: -10%;
  width: 2px;
  height: 80px;
  background: linear-gradient(180deg, white, rgba(255,255,255,0));
  opacity: 0.8;
  transform: rotate(45deg);
  animation: shoot 3s linear infinite;
  z-index: -1;
}

@keyframes shoot {
  0% { transform: translateX(-200px) translateY(-200px) rotate(45deg); opacity: 1; }
  100% { transform: translateX(120vw) translateY(120vh) rotate(45deg); opacity: 0; }
}



.stars {
  background-image: url('https://i.imgur.com/1Jg8FhN.png');
  animation: moveStars 60s linear infinite;
  opacity: 0.6;
}

.stars2 {
  background-image: url('https://i.imgur.com/1Jg8FhN.png');
  animation: moveStars 120s linear infinite;
  opacity: 0.35;
}

.stars3 {
  background-image: url('https://i.imgur.com/1Jg8FhN.png');
  animation: moveStars 180s linear infinite;
  opacity: 0.2;
}

@keyframes moveStars {
  from { transform: translateY(0); }
  to { transform: translateY(-600px); }
}



/* =========================================================
   UNIVERSAL SECTION LAYOUT
========================================================= */

section {
  padding: 100px 20px;
  display: flex;
  justify-content: center;
}

.section-box {
  width: 100%;
  max-width: 1200px;
  border-radius: 20px;
  padding: 50px;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
}



/* =========================================================
   SECTION TITLES
========================================================= */

.about h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  background: linear-gradient(90deg, #7aa8ff, #4d7aff);
  -webkit-background-clip: text;
  color: transparent;
}

.projects h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  background: linear-gradient(90deg, #d9a6ff, #b56cff);
  -webkit-background-clip: text;
  color: transparent;
}

.vanished h2,
.founder-title {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
  background: linear-gradient(90deg, #ff9a9a, #ff4d4d);
  -webkit-background-clip: text;
  color: transparent;
}



/* =========================================================
   ABOUT BOXES
========================================================= */

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

.about-box {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 25px;
  backdrop-filter: blur(10px);
  transition: 0.3s ease;
}

.about-box:hover {
  transform: translateY(-6px);
}

.about-box h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.about-box p {
  color: #d0d0d0;
}

.icon {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #7aa8ff;
}



/* =========================================================
   PROJECT CARDS
========================================================= */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.project-card {
  background: transparent;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  transition: 0.3s ease;
}

.project-card:hover {
  transform: translateY(-8px);
}

.project-banner {
  height: 180px;
  background-size: cover;
  background-position: center;
}

/* FIXED — renamed to avoid conflict with .vanished section */
.project-vanished { background-image: linear-gradient(120deg, #5865F2, #404EED); }

.r6gen { background-image: linear-gradient(120deg, #00aaff, #0066ff); }
.automod { background-image: linear-gradient(120deg, #ff004c, #ff8a00); }
.vouch { background-image: linear-gradient(120deg, #ffd700, #ff8a00); }
.promo { background-image: linear-gradient(120deg, #00ffcc, #0088ff); }
.shops { background-image: linear-gradient(120deg, #ff00c8, #6a00ff); }

.project-content {
  padding: 25px;
}

.project-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #d9a6ff;
}

.discord-logo {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.project-card h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.project-card p {
  color: #ccc;
  margin-bottom: 20px;
}

.project-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #b56cff;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
}

.project-btn:hover {
  background: #d9a6ff;
}



/* =========================================================
   VANISHED SECTION — CLEAN, BORDERED, NO BACKGROUND
========================================================= */

.vanished {
  padding: 100px 20px;
  display: flex;
  justify-content: center;
}

.vanished .section-box {
  width: 100%;
  max-width: 900px;
  background: transparent !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  border-radius: 20px;
  padding: 50px;
  backdrop-filter: blur(12px);
}

/* Titles */
.vanished h2,
.founder-title {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
  background: linear-gradient(90deg, #9e0dd8, #d0aada);
  -webkit-background-clip: text;
  color: transparent;
}

/* Inner boxes */
.vanished-box,
.founder-box {
  background: transparent !important;
  border-radius: 16px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.15) !important;
  backdrop-filter: blur(10px);
  margin-bottom: 30px;
}

/* Text */
.vanished-box p,
.founder-box p {
  color: #e6e6e6;
  line-height: 1.85;
  margin-bottom: 18px;
}

.signature {
  margin-top: 20px;
  font-style: italic;
  color: #ff9a9a;
  text-align: right;
}
/* Fade-in base state */
.fade-in {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* When visible */
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.footer {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.footer-box {
  width: 100%;
  max-width: 900px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 30px;
  backdrop-filter: blur(10px);
  background: transparent;
  text-align: center;
}

.footer-box p {
  color: #ccc;
  margin: 8px 0;
}

.footer .credit {
  margin-top: 20px;
  font-style: italic;
  color: #888;
}
/* =========================================================
   SOCIALS SECTION
========================================================= */

.socials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
}

.social-box {
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 25px;
  text-align: center;
  backdrop-filter: blur(10px);
  background: transparent;
  transition: 0.3s ease;
  color: #fff;
  text-decoration: none;
}

.social-box i {
  font-size: 2rem;
  margin-bottom: 10px;
  transition: 0.3s ease;
}

.social-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 12px rgba(255,255,255,0.2);
}

.social-box:hover i {
  transform: rotate(5deg) scale(1.1);
}






/* =========================================================
   DISCORD SERVER STATS
========================================================= */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
}

.stat-box {
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 25px;
  text-align: center;
  backdrop-filter: blur(10px);
  background: transparent;
}

.stat-box h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.stat-box p {
  font-size: 1.6rem;
  color: #d0d0d0;
}



/* =========================================================
   NOW PLAYING (SPOTIFY)
========================================================= */

.music-box {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 40px;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
  text-align: center;
  position: relative;
  margin-bottom: 40px;
}

/* TITLE AT TOP */
.music-box h2 {
  font-size: 1.6rem;
  margin-bottom: 30px;
  color: #fff;
  letter-spacing: 1px;
}

/* ICON */
.music-icon {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #1DB954;
}

/* TRACK TITLE */
#music-title {
  font-size: 1.4rem;
  margin-bottom: 5px;
  color: #fff;
}

/* ARTIST NAME */
#music-artist {
  color: #ccc;
  font-size: 1rem;
  opacity: 0.85;
}

/* =========================================================
   PROJECTS — IMAGE VERSION
========================================================= */

.project-card,
.featured-project {
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  background: transparent;
  transition: 0.3s ease;

  /* NEW: Make cards flex containers */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.project-card:hover,
.featured-project:hover {
  transform: translateY(-6px);
}

.project-banner {
  height: 200px;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.featured-project .project-banner {
  height: 260px;
}

.project-content {
  padding: 25px;

  /* NEW: Make content fill space and push button down */
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.project-btn {
  /* NEW: Push button to bottom of content */
  margin-top: auto;
}

.featured-project {
  margin-bottom: 50px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  font-size: 0.8rem;
  margin-bottom: 15px;
  opacity: 0.8;
}

.tags span {
  display: inline-block;
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  margin-right: 8px;
  margin-bottom: 8px;
  font-size: 0.85rem;
  opacity: 0.8;
}

.funfact {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #aaa;
  font-style: italic;
}

/* =========================================================
   PROJECT BANNER HOVER ANIMATIONS
========================================================= */

.project-card,
.featured-project {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.project-card:hover,
.featured-project:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 0 25px rgba(255,255,255,0.15);
}

.project-banner {
  transition: transform 0.45s ease, filter 0.45s ease;
}

.project-card:hover .project-banner,
.featured-project:hover .project-banner {
  transform: scale(1.08);
  filter: brightness(1.15) contrast(1.1);
}
.spotify-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 20px;
  border-radius: 12px;
  backdrop-filter: blur(4px);
  transition: 0.3s ease;
}

.spotify-card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-3px);
}

.spotify-cover {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  object-fit: cover;
}

.spotify-info h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #fff;
}

.spotify-info p {
  margin: 3px 0 0;
  color: #aaa;
  font-size: 0.9rem;
}
/* ===== CURSOR NEON LINE ===== */
.cursor-line {
  position: fixed;
  width: 120px; /* length of the line */
  height: 6px;  /* thickness */
  border-radius: 50px;
  pointer-events: none;
  background: linear-gradient(90deg, #1ce7e700, rgba(0,255,255,0.8), rgba(34, 190, 190, 0));
  filter: blur(8px);
  transform: translate(-50%, -50%);
  z-index: 9999;
  mix-blend-mode: screen;
  transition: transform 0.08s ease-out;
}

/* SECTION BOX */
.favourites-section .section-box {
  margin-top: -30px;
  padding: 25px;
  border-radius: 12px;
  background: rgba(0,0,0,0.55);
  border: 1px solid #333;
  box-shadow: 0 0 20px rgba(0,255,255,0.15);
}

/* Title */
.fav-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.6rem;
  color: #fff;
  text-shadow: 0 0 10px rgba(0,255,255,0.4);
}

/* MOVING STRIP */
.favourites-strip {
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
}

.strip-inner {
  display: flex;
  gap: 60px;
  animation: scrollLoop 25s linear infinite;
}

@keyframes scrollLoop {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.strip-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.album-row {
  display: flex;
  gap: 20px;
}

.names-row {
  display: flex;
  gap: 15px;
}
.album-cover {
  width: 110px;        /* controls size */
  height: 110px;       /* keeps them square */
  max-width: 110px;    /* prevents them from blowing up */
  max-height: 110px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 15px rgba(0,255,255,0.4);
  transition: 0.25s ease;
}


.fav-box {
  background: rgba(0,0,0,0.45);
  border: 1px solid #0ff;
  padding: 12px 20px;
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  text-shadow: 0 0 8px rgba(0,255,255,0.4);
  box-shadow: 0 0 12px rgba(0,255,255,0.2);
  transition: 0.25s ease;
  white-space: nowrap;
}

.fav-box:hover {
  transform: scale(1.08);
  box-shadow: 0 0 18px rgba(0,255,255,0.4);
}
.spotify-section h2 {
  text-align: center;
  width: 100%;
}
/* FULL BOX AROUND LISTENING STATS */
.listening-stats-box {
  margin-top: 30px;
  padding: 25px;
  border-radius: 12px;
  background: rgba(0,0,0,0.55);
  border: 1px solid #333;
  box-shadow: 0 0 20px rgba(0,255,255,0.15);
}

/* Title inside the box */
.stats-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
  color: #fff;
  text-shadow: 0 0 10px rgba(0,255,255,0.4);
}

/* GRID INSIDE THE BOX */
.listening-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}

/* INDIVIDUAL STAT CARDS */
.stat-item {
  background: rgba(0,0,0,0.45);
  border: 1px solid #333;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 12px rgba(0,255,255,0.15);
  transition: 0.25s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(0,255,255,0.3);
}

.stat-item h4 {
  color: #0ff;
  margin-bottom: 6px;
  font-size: 1rem;
}

.stat-item p {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
}
/* COLOR-SHIFTING GLOW BEHIND SPOTIFY CARD */
.spotify-card {
  position: relative;
  overflow: hidden;
}

.spotify-card::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -40%;
  width: 180%;
  height: 180%;
  background: radial-gradient(circle, rgba(0,255,255,0.4), rgba(0,0,0,0));
  filter: blur(60px);
  animation: glowShift 8s ease-in-out infinite alternate;
  z-index: -1;
}

@keyframes glowShift {
  0% {
    transform: rotate(0deg) scale(1);
    filter: hue-rotate(0deg) blur(60px);
  }
  100% {
    transform: rotate(180deg) scale(1.2);
    filter: hue-rotate(90deg) blur(60px);
  }
}
/* COLOR-SHIFTING GLOW BEHIND SPOTIFY CARD */
.spotify-card {
  position: relative;
  overflow: hidden;
}


@keyframes glowShift {
  0% {
    transform: rotate(0deg) scale(1);
    filter: hue-rotate(0deg) blur(60px);
  }
  100% {
    transform: rotate(180deg) scale(1.2);
    filter: hue-rotate(90deg) blur(60px);
  }
}
/* SECTION BOX */
.socials-section .section-box {
  margin-top: 40px;
  padding: 25px;
  border-radius: 12px;
  background: rgba(0,0,0,0.55);
  border: 1px solid #333;
  box-shadow: 0 0 20px rgba(0,255,255,0.15);
  position: relative;
  overflow: hidden;
}

/* COLOR-SHIFTING GLOW BEHIND SECTION */
.socials-section .section-box::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -40%;
  width: 180%;
  height: 180%;
  background: radial-gradient(circle, rgba(0,255,255,0.4), rgba(0,0,0,0));
  filter: blur(60px);
  animation: glowShift 8s ease-in-out infinite alternate;
  z-index: -1;
}

@keyframes glowShift {
  0% { transform: rotate(0deg) scale(1); filter: hue-rotate(0deg) blur(60px); }
  100% { transform: rotate(180deg) scale(1.2); filter: hue-rotate(90deg) blur(60px); }
}

/* TITLE */
.socials-title {
  text-align: center;
  margin-bottom: 25px;
  font-size: 1.6rem;
  color: #fff;
  text-shadow: 0 0 10px rgba(0,255,255,0.4);
}

/* GRID */
.socials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
}

/* SOCIAL CARD */
.social-card {
  background: rgba(0,0,0,0.45);
  border: 1px solid #0ff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 0 12px rgba(0,255,255,0.2);
  transition: 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.social-card i {
  font-size: 1.8rem;
  color: #0ff;
  transition: 0.25s ease;
}

.social-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(0,255,255,0.4);
}

.social-card:hover i {
  color: #fff;
}
.quotes .section-box {
  padding: 25px;
  border-radius: 12px;
  background: rgba(0,0,0,0.55);
  border: 1px solid #333;
  box-shadow: 0 0 20px rgba(0,255,255,0.15);
  position: relative;
  overflow: hidden;
}

/* Color shifting glow behind the quote box */
.quotes .section-box::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -40%;
  width: 180%;
  height: 180%;
  background: radial-gradient(circle, rgba(0,255,255,0.4), rgba(0,0,0,0));
  filter: blur(60px);
  animation: glowShift 8s ease-in-out infinite alternate;
  z-index: -1;
}

@keyframes glowShift {
  0% { transform: rotate(0deg) scale(1); filter: hue-rotate(0deg) blur(60px); }
  100% { transform: rotate(180deg) scale(1.2); filter: hue-rotate(90deg) blur(60px); }
}

.quotes h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.6rem;
  color: #fff;
  text-shadow: 0 0 10px rgba(0,255,255,0.4);
}

/* Quote box styling */
.quote-box {
  background: rgba(0,0,0,0.45);
  border: 1px solid #0ff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 12px rgba(0,255,255,0.2);
  transition: 0.25s ease;
}

.quote-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(0,255,255,0.4);
}

#quote-text {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.6;
  text-shadow: 0 0 8px rgba(0,255,255,0.3);
}
.about-signature {
  margin-top: 30px;
  text-align: right;
  font-size: 1.3rem;
  color: #0ff;
  text-shadow: 0 0 12px rgba(0,255,255,0.6);
  font-weight: 600;
  animation: signatureGlow 4s ease-in-out infinite alternate;
}

@keyframes signatureGlow {
  0% { text-shadow: 0 0 8px rgba(0,255,255,0.4); }
  100% { text-shadow: 0 0 18px rgba(0,255,255,0.9); }
}
/* MOVING BACKGROUND GRID */
.dev-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,255,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: gridMove 20s linear infinite;
  z-index: -1;
  opacity: 0.35;
}

@keyframes gridMove {
  from { transform: translateY(0); }
  to { transform: translateY(-200px); }
}



/* CODE STRIP INSIDE ABOUT ME SECTION */
.code-strip {
  width: 100%;
  height: 90px;
  margin-top: 30px;

  /* This keeps it at the bottom of the section box */
  position: relative;
  bottom: 0;

  overflow: hidden;
  background: rgba(0,0,0,0.35);
  border-top: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
  border-radius: 0 0 12px 12px;
}

.code-strip-inner {
  display: flex;
  gap: 40px;
  animation: scrollCode 25s linear infinite;
  padding: 15px 0;
}

@keyframes scrollCode {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.code-group {
  display: flex;
  gap: 40px;
}

.code-strip i {
  font-size: 55px;
  opacity: 0.85;
  transition: 0.25s ease;
}

.code-strip i:hover {
  opacity: 1;
  transform: scale(1.1);
}
/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 65px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 1000;
}

.nav-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0ff;
  letter-spacing: 1px;
}

.nav-right a {
  margin-left: 25px;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  opacity: 0.85;
  transition: 0.25s ease;
}

.nav-right a:hover {
  opacity: 1;
  color: #0ff;
}

.hire-btn {
  padding: 6px 14px;
  border: 1px solid #0ff;
  border-radius: 6px;
  transition: 0.25s ease;
}

.hire-btn:hover {
  background: #0ff;
  color: #000;
}
/* VANISHED SECTION */
.vanished .section-box {
  padding: 40px;
  border-radius: 14px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}


.vanished-header {
  font-size: 2rem;
  margin-bottom: 25px;
  text-align: center;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #00eaff, #7b2fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* INTRO BOX */
.vanished-box {
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 35px;
  line-height: 1.7;
  transition: box-shadow 0.3s ease, border 0.3s ease;
}

.vanished-box:hover {
  border: 1px solid #00eaff;
  box-shadow: 0 0 12px #00eaff;
}


/* SUBHEADER */
.founder-title {
  margin-top: 20px;
  margin-bottom: 15px;
  font-size: 1.5rem;
  text-align: center;
  background: linear-gradient(90deg, #00eaff, #7b2fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.5px;
}


/* FOUNDER LETTER */
.founder-box {
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 25px;
  border-radius: 12px;
  line-height: 1.75;
  transition: box-shadow 0.3s ease, border 0.3s ease;
}

.founder-box:hover {
  border: 1px solid #7b2fff;
  box-shadow: 0 0 12px #7b2fff;
}

.founder-box p {
  margin-bottom: 15px;
  color: #ddd;
}

.founder-box p {
  margin-bottom: 15px;
  color: #ddd;
}

/* SIGNATURE */
.signature {
  margin-top: 25px;
  text-align: right;
  font-size: 1.1rem;
  background: linear-gradient(90deg, #00eaff, #7b2fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.9;
}

/* FULLSCREEN INTRO */
#intro-screen {
  position: fixed;
  inset: 0;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  overflow: hidden;
}

/* ASCII TEXT */
#ascii-output {
  color: #4fc3ff; /* blue */
  font-family: monospace;
  font-size: 12px;
  white-space: pre;
  line-height: 1.1;
}

/* FADE OUT ANIMATION */
.fade-out {
  animation: fadeOut 1s ease forwards;
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}
body {
  opacity: 0;
  animation: fadeInSite 1s ease forwards;
  animation-delay: 2.5s; /* adjust based on ASCII length */
}

@keyframes fadeInSite {
  to {
    opacity: 1;
  }
}
.spotify-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

/* GLOW ON HOVER */
.spotify-card:hover {
  border: 1px solid #1DB954;
  box-shadow: 0 0 12px #1DB954;
}
.spotify-cover {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
  transition: box-shadow 0.3s ease;
}

.spotify-card:hover .spotify-cover {
  box-shadow: 0 0 10px #1DB954;
}
.section-title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 25px;
  letter-spacing: 1px;
  color: #4668ff;
}
/* FOOTER BOX */
.footer-box {
  padding: 25px;
  border-radius: 14px;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

/* MOVING RAINBOW BORDER */
.footer-box::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 16px;
  background: linear-gradient(
    90deg,
    #ff0040,
    #ff7a00,
    #ffee00,
    #00ff85,
    #00c8ff,
    #7b2fff,
    #ff00d4,
    #ff0040
  );
  background-size: 400%;
  animation: rainbowMove 8s linear infinite;
  z-index: -1;
}

/* MASK TO KEEP INSIDE CLEAN */
.footer-box::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
  z-index: -1;
}

/* RAINBOW ANIMATION */
@keyframes rainbowMove {
  0% { background-position: 0% }
  100% { background-position: 400% }
}

/* GRADIENT TEXT */
.footer-box p,
.footer-box strong,
.footer-box .credit {
  background: linear-gradient(90deg, #00eaff, #7b2fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
  text-align: center;
  margin: 6px 0;
.ascii-art {
    white-space: pre-wrap;      /* allows wrapping */
    word-wrap: break-word;      /* breaks long lines */
    font-size: 10px;            /* smaller on mobile */
    line-height: 1.1;           /* tighter spacing */
    max-width: 100%;            /* never overflow screen */
    overflow-x: auto;           /* scroll if needed */
}
/* =========================================================
   MOBILE FIXES
========================================================= */
@media (max-width: 768px) {

  /* Fix section layout */
  section {
    padding: 60px 15px;
    flex-direction: column;
    align-items: center;
  }

  /* Fix box spacing */
  .section-box {
    padding: 25px;
    border-radius: 15px;
  }

  /* Fix headings */
  .about h2,
  .projects h2,
  .vanished h2,
  .founder-title {
    font-size: 2rem;
    margin-bottom: 25px;
  }

  /* Fix ASCII intro */
  #ascii-output {
    font-size: 8px;
    line-height: 1.1;
    white-space: pre-wrap;
    word-wrap: break-word;
    max-width: 100%;
    overflow-x: auto;
  }

  /* Fix grid layouts */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
/* =========================================================
   PREMIUM MOBILE EXPERIENCE
   (Ellis Mobile Upgrade Pack)
========================================================= */

@media (max-width: 768px) {

  /* GLOBAL */
  body {
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* SECTION LAYOUT */
  section {
    padding: 70px 18px;
    flex-direction: column;
    align-items: center;
  }

  .section-box {
    width: 100%;
    padding: 28px;
    border-radius: 18px;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.35);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease forwards;
  }

  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* HEADINGS */
  .about h2,
  .projects h2,
  .vanished h2,
  .founder-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
    text-align: center;
  }

  /* ASCII INTRO */
  #ascii-output {
    font-size: 7px;
    line-height: 1.1;
    white-space: pre-wrap;
    word-wrap: break-word;
    max-width: 100%;
    overflow-x: auto;
    opacity: 0.85;
    filter: drop-shadow(0 0 4px rgba(255,255,255,0.2));
  }

  /* ABOUT GRID */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  /* PROJECT CARDS */
  .project-card {
    padding: 18px;
    border-radius: 14px;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.3);
    transition: transform 0.2s ease;
  }

  .project-card:active {
    transform: scale(0.97);
  }

  /* TEXT */
  p, li {
    font-size: 0.95rem;
    line-height: 1.45;
  }

  /* BACKGROUND OPTIMIZATION */
  .stars, .stars2, .stars3 {
    opacity: 0.25;
  }

  .aurora {
    opacity: 0.35;
    filter: blur(90px);
  }

  /* MOBILE OVERLAY FOR DEPTH */
  body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.9));
    pointer-events: none;
    z-index: -1;
  }

  /* TOUCH FEEDBACK */
  .section-box:active {
    transform: scale(0.98);
    transition: 0.15s ease;
  }
}
