:root{
  --bg0:#060913;
  --bg1:#0b1020;

  --cyan:#3cf0fd;
  --gold:#e6c97a;

  --txt:#e9e2c2;
  --mut:rgba(233,226,194,.72);

  --glass: rgba(18, 26, 44, .62);
  --glass2: rgba(10, 14, 24, .62);

  --b: rgba(255,255,255,.08);
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --shadow2: 0 6px 24px rgba(0,0,0,.35);

  --radius: 22px;
  --radius2: 16px;

  --max: 980px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  color:var(--txt);
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:
	radial-gradient(1100px 650px at 20% 20%, rgba(60, 240, 253, 0.12), transparent 60%),
	radial-gradient(900px 550px at 80% 70%, rgba(230, 201, 122, 0.10), transparent 60%),
	linear-gradient(180deg, var(--bg1), var(--bg0));
  overflow-x:hidden;
}

/* Background video layer (optional like your old version) */
#void-smoke{
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  opacity: 0.32;
  z-index: -2;
  pointer-events: none;
  mix-blend-mode: lighten;
}

/* Subtle star layer (keep simple) */
.stars{
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
  opacity:.55;
  background:
	radial-gradient(1px 1px at 12% 22%, rgba(255,255,255,.9), transparent 60%),
	radial-gradient(1px 1px at 72% 18%, rgba(255,255,255,.8), transparent 60%),
	radial-gradient(1px 1px at 38% 78%, rgba(255,255,255,.7), transparent 60%),
	radial-gradient(1px 1px at 86% 62%, rgba(255,255,255,.7), transparent 60%),
	radial-gradient(1px 1px at 22% 62%, rgba(255,255,255,.65), transparent 60%),
	radial-gradient(1px 1px at 58% 34%, rgba(255,255,255,.65), transparent 60%),
	radial-gradient(1px 1px at 46% 12%, rgba(255,255,255,.55), transparent 60%),
	radial-gradient(1px 1px at 14% 86%, rgba(255,255,255,.55), transparent 60%),
	radial-gradient(1px 1px at 92% 86%, rgba(255,255,255,.5), transparent 60%);
  filter: blur(.2px);
  animation: drift 16s linear infinite;
}
@keyframes drift{
  0%{ transform: translate3d(0,0,0); }
  50%{ transform: translate3d(-12px, 8px, 0); }
  100%{ transform: translate3d(0,0,0); }
}

.wrap{
  width:min(var(--max), 100%);
  margin:0 auto;
  padding: 22px 16px 44px;
  position:relative;
  z-index:1;
}

/* Header like old version, but with new styling */
header{
  border-radius: var(--radius);
  border:1px solid var(--b);
  background: linear-gradient(180deg, rgba(6,9,19,.84), rgba(6,9,19,.56));
  box-shadow: var(--shadow2);
  backdrop-filter: blur(10px);
  overflow:hidden;
  position:relative;
}

.headInner{
  padding: 18px 16px;
  display:flex;
  align-items:center;
  gap:14px;
}

.logoWrap{
  width:64px;
  height:64px;
  border-radius: 18px;
  border:1px solid rgba(60,240,253,.35);
  background:
	radial-gradient(26px 26px at 35% 35%, rgba(60,240,253,.18), transparent 70%),
	radial-gradient(26px 26px at 70% 70%, rgba(230,201,122,.12), transparent 70%),
	rgba(60,240,253,.06);
  box-shadow: var(--shadow2);
  display:grid;
  place-items:center;
  overflow:hidden;
  flex: 0 0 auto;
}
.logoWrap img{
  width: 52px;
  height: 52px;
  object-fit: contain;
  display:block;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,.35));
}

.titles{ min-width:0; }
.titles h1{
  margin:0;
  font-size: 30px;
  letter-spacing:.25px;
  line-height:1.05;
}
.titles .sub{
  margin-top:6px;
  color: var(--mut);
  font-size: 13px;
  line-height: 1.35;
}

.gold{ color: var(--gold); }
.accent{ color: var(--cyan); }

/* Card sections like the old version */
.card{
  margin-top:16px;
  border-radius: var(--radius);
  border:1px solid var(--b);
  background: linear-gradient(180deg, var(--glass), var(--glass2));
  box-shadow: var(--shadow2);
  backdrop-filter: blur(10px);
  overflow:hidden;
  position:relative;
}
.card::before{
  content:"";
  position:absolute;
  inset:-60px;
  background:
	radial-gradient(520px 260px at 15% 25%, rgba(60,240,253,.12), transparent 70%),
	radial-gradient(520px 260px at 85% 75%, rgba(230,201,122,.10), transparent 70%);
  opacity:.85;
  pointer-events:none;
}

.cardInner{
  position:relative;
  padding: 16px;
  color: var(--mut);
  font-size: 14px;
  line-height: 1.55;
}

.card h2{
  position:relative;
  margin:0;
  padding: 14px 16px 0;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .25px;
  color: rgba(233,226,194,.96);
}

/* Button */
.btnRow{
  display:flex;
  justify-content:center;
  padding: 0 16px 16px;
  position:relative;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 16px;
  border:1px solid rgba(60,240,253,.30);
  background: rgba(60,240,253,.08);
  color: var(--txt);
  font-weight: 800;
  letter-spacing:.15px;
  cursor:pointer;
  text-decoration:none;
  transition: transform .08s ease, filter .2s ease, border-color .2s ease;
  user-select:none;
  box-shadow: var(--shadow2);
  white-space:nowrap;
}
.btn:hover{ filter:brightness(1.08); transform: translateY(-1px); border-color: rgba(60,240,253,.45); }
.btn:active{ transform: translateY(0px) scale(.99); }
.btn img{ width:18px; height:18px; display:block; }

/* Music player (minimal styling, keep your existing IDs) */
.music-player{
  display:grid;
  grid-template-columns: 96px 1fr;
  gap:12px;
  align-items:center;
}
.player-cover{
  width:96px;
  height:96px;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.10);
  overflow:hidden;
  background: rgba(0,0,0,.18);
  box-shadow: var(--shadow2);
  flex:0 0 auto;
}
.player-cover img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.player-info{
  display:flex;
  flex-direction:column;
  gap:4px;
  min-width:0;
}
.song-title{
  font-weight:900;
  letter-spacing:.2px;
  color: rgba(233,226,194,.96);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.song-artist{
  font-size:12px;
  color: var(--mut);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.player-controls{
  margin-top:10px;
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}
.player-btn{
  padding:10px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  color: var(--txt);
  cursor:pointer;
  user-select:none;
  box-shadow: var(--shadow2);
}
.player-btn.main{
  border-color: rgba(60,240,253,.30);
  background: rgba(60,240,253,.08);
  font-weight:900;
}

.player-progress{
  margin-top:12px;
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.player-time{
  font-size:12px;
  color: rgba(233,226,194,.78);
  min-width: 42px;
  text-align:center;
}
.progress-bar-bg{
  flex:1 1 220px;
  height:10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  overflow:hidden;
  cursor:pointer;
  min-width: 180px;
}
.progress-bar{
  height:100%;
  width:0%;
  background: linear-gradient(90deg, rgba(60,240,253,.75), rgba(230,201,122,.55));
}
#player-volume{
  width: 110px;
}

.player-lyric{
  margin-top:12px;
  padding: 10px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.14);
  color: rgba(233,226,194,.82);
  min-height: 42px;
}

/* Slideshow */
.slideshow-container{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.16);
  box-shadow: var(--shadow2);
  overflow:hidden;
  position:relative;
  min-height: 220px;
}
.slideshow-container .slide{
  width:100%;
  height: 360px;
  object-fit: cover;
  display:none;
}
.slideshow-container .slide.active{
  display:block;
}
@media (max-width: 760px){
  .music-player{ grid-template-columns: 1fr; }
  .player-cover{ width:100%; height: 220px; border-radius: var(--radius2); }
  .slideshow-container .slide{ height: 240px; }
  .titles h1{ font-size: 26px; }
}

footer{
  margin-top:16px;
  color: rgba(233,226,194,.65);
  font-size:12px;
  line-height:1.45;
  padding: 8px 2px 0;
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

/* --- FULL-SIZE FIXED BACKGROUND (site scrolls over it) --- */
body{
  background: none;            /* stop the body bg from "moving" with content */
  overflow-x: hidden;
}

/* Fixed gradient background */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;

  background:
    radial-gradient(1100px 650px at 20% 20%, rgba(60, 240, 253, 0.12), transparent 60%),
    radial-gradient(900px 550px at 80% 70%, rgba(230, 201, 122, 0.10), transparent 60%),
    linear-gradient(180deg, var(--bg1), var(--bg0));

  /* keep it visually stable */
  transform: translateZ(0);
}

/* Optional: subtle vignette to keep cards readable */
body::after{
  content:"";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(900px 600px at 50% 10%, transparent 30%, rgba(0,0,0,.35) 100%);
}

/* Your existing fixed layers will now sit above the gradient */
#void-smoke{ z-index: -2; }
.stars{ z-index: -1; }

/* Make sure the site content is above everything */
.wrap{ position: relative; z-index: 1; }

/* Discord icon = real Discord blurple */
.discordSvg{
  width:18px;
  height:18px;
  display:block;
}
.discordSvg *{
  fill:#5865F2 !important;   /* real Discord blurple */
}
/* Slideshow fade transition */
.slideshow-container{
  position: relative;
  overflow: hidden;
}

/* all slides stacked */
.slideshow-container img.slide{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  transition: opacity 700ms ease;
  will-change: opacity;
}

/* visible slide */
.slideshow-container img.slide.active{
  opacity: 1;
}

/* give the container a consistent height */
.slideshow-container{
  aspect-ratio: 16 / 9; /* change if you want */
  border-radius: 16px;
}
/* Slideshow crossfade (override any old display:none rules) */
.slideshow-container{
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 16 / 9;   /* pick what you like */
  background: rgba(0,0,0,.18);
}

/* Force slides to be stackable and animatable */
.slideshow-container img.slide{
  display: block !important;   /* kills display:none swaps */
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  transition: opacity 900ms ease;
  will-change: opacity;
  pointer-events: none;
}

/* Active slide fades in */
.slideshow-container img.slide.active{
  opacity: 1;
  z-index: 2;
}
/* add to your css (end) */
.headInner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.miniPlayer{
  display:flex;
  align-items:center;
  gap:10px;
  flex:0 0 auto;
}

.mini-btn{
  width:40px;
  height:40px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  border: 1px solid rgba(60,240,253,.24);
  background: radial-gradient(circle at 30% 30%, rgba(60,240,253,.14), rgba(20,34,60,.92));
  color: rgba(233,226,194,.92);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  cursor:pointer;
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}

.mini-btn:hover{
  transform: translateY(-1px);
  border-color: rgba(60,240,253,.45);
  box-shadow: 0 16px 38px rgba(0,0,0,.32);
}

.mini-btn:active{ transform: translateY(0); }

.mini-main{
  width:46px;
  height:46px;
  border-color: rgba(230,201,122,.28);
  background: radial-gradient(circle at 30% 30%, rgba(230,201,122,.16), rgba(20,34,60,.92));
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
}

.miniPlayer .icon{
  width:20px;
  height:20px;
  fill: currentColor;
}

.miniPlayer .icon-pause{ display:none; }
.miniPlayer.playing .icon-play{ display:none; }
.miniPlayer.playing .icon-pause{ display:block; }

/* mobile: drop under title */
@media (max-width: 720px){
  .headInner{ flex-wrap: wrap; justify-content:flex-start; }
  .miniPlayer{ width:100%; justify-content:flex-start; }
}
