* { margin: 0; padding: 0; box-sizing: border-box; font-family: sans-serif; }

body {
  background: linear-gradient(135deg,#0f0c29,#302b63,#24243e);
  color: #fff;
}
html {
  scroll-behavior: smooth;
}
/* RESET */
*{margin:0;padding:0;box-sizing:border-box;}

body{
  padding-top:70px;
  font-family:sans-serif;
}


/* FLASH */


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');

/* main intro */
/* scroll lock */
.no-scroll{
  overflow:hidden;
  height:100vh;
  touch-action:none;
}

/* main */
#introX{
  position:fixed;
  inset:0;
  background:#120021;
  z-index:99999;
  display:flex;
  justify-content:center;
  align-items:center;
  overflow:hidden;
}

/* canvas */
#introCanvas{
  position:absolute;
  inset:0;
}

/* center */
.introBox{
  text-align:center;
  z-index:2;
}

/* logo */
.introLogo{
  font-size:55px;
  color:#d946ef;
  animation:pulse 1.4s infinite;
}

/* text */
.introText{
  font-size:26px;
  margin:10px 0 20px;

  background:linear-gradient(45deg,#ff00cc,#a855f7,#fff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* loader */
.introSpin{
  width:50px;
  height:50px;
  border:3px solid rgba(255,255,255,0.2);
  border-top:3px solid #ff00cc;
  border-radius:50%;
  animation:spin 1s linear infinite;
  margin:auto;
}

/* glow */
.introGlow{
  position:absolute;
  width:250px;
  height:250px;
  background:radial-gradient(circle,#281e2b,transparent);
  opacity:0;
  border-radius:50%;
}

/* lightstick */
.introLight{
  position:absolute;
  right:20px;
  bottom:20px;
  width:60px;
  opacity:0;
}

/* animations */
@keyframes spin{
  100%{transform:rotate(360deg);}
}
@keyframes pulse{
  50%{transform:scale(1.2);}
}

/* mobile */
@media(max-width:768px){
  .introText{font-size:18px;}
}


/* NAVBAR */

/* ===== NAVBAR ===== */
.navbar{
  position: fixed;
  top:0; left:0;
  width:100%;
  height:60px;

  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:0 20px;

  background: rgba(43,0,64,0.7);
  backdrop-filter: blur(12px);

  /* 🔥 soft shadow */
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);

  z-index:1000;
  transition:0.3s;
}

/* subtle neon bottom line */
.navbar::after{
  content:"";
  position:absolute;
  bottom:0; left:0;
  width:100%;
  height:2px;
  background: linear-gradient(90deg,#d946ef,transparent,#d946ef);
  opacity:0.6;
}

/* LOGO */
.logo{
  color:#d946ef;
  font-weight:bold;
  font-size:18px;
  letter-spacing:1px;
  text-shadow:0 0 10px rgba(217,70,239,0.6);
}

/* ===== DESKTOP MENU ===== */
.desktop-menu{
  display:flex;
  gap:25px;
  list-style:none;
}

.desktop-menu a{
  color:#fff;
  text-decoration:none;
  position:relative;
  padding:5px 0;
  transition:0.3s;
}

/* hover glow */
.desktop-menu a:hover{
  color:#d946ef;
  text-shadow:0 0 8px #d946ef;
}

/* underline animation */
.desktop-menu a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-5px;
  width:0%;
  height:2px;
  background:#d946ef;
  transition:0.3s;
}

.desktop-menu a:hover::after,
.desktop-menu a.active::after{
  width:100%;
}

/* ===== MOBILE BUTTON ===== */
.menu-btn{
  display:none;
  font-size:26px;
  color:#fff;
  cursor:pointer;
  transition:0.3s;
}

/* hover */
.menu-btn:hover{
  color:#d946ef;
}

/* ===== SIDEBAR ===== */
.sidebar{
  position:fixed;
  top:0;
  left:0;
  height:100%;
  width:260px;

  background: rgba(31,0,48,0.95);
  backdrop-filter: blur(10px);

  padding:20px;

  transform: translateX(-100%);
  transition:0.4s ease;

  z-index:1001;

  /* 🔥 soft shadow */
  box-shadow: 5px 0 25px rgba(0,0,0,0.4);
}

.sidebar.active{
  transform: translateX(0);
}

/* MENU ITEMS */
.side-menu{
  list-style:none;
  margin-top:40px;
}

.side-menu li{
  margin:18px 0;
}

.side-menu a{
  color:#fff;
  text-decoration:none;
  display:block;
  padding:12px;
  border-radius:12px;
  transition:0.3s;
}

/* hover */
.side-menu a:hover{
  background: rgba(217,70,239,0.15);
  color:#d946ef;
  transform: translateX(5px);
}

/* ===== OVERLAY ===== */
.overlay{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(3px);

  opacity:0;
  pointer-events:none;
  transition:0.3s;

  z-index:1000;
}

.overlay.active{
  opacity:1;
  pointer-events:auto;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){

  .desktop-menu{
    display:none;
  }

  .menu-btn{
    display:block;
  }

}

/* HERO SECTION */
.hero {
  margin-top: 20px; /* navbar er niche gap */
  padding: 40px;
  /* background: linear-gradient(135deg, #3a0066, #1a002b); */
}

/* CONTAINER */
.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* IMAGE */
.hero-img img {
  width: 100%;
  max-width: 550px;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.4);
}

/* TEXT */
.hero-text {
  color: white;
  max-width: 500px;
}

.hero-text h1 {
  font-size: 40px;
  margin-bottom: 15px;
}

.hero-text p {
  line-height: 1.6;
  color: #ddd;
}

/* BUTTON */
.hero-text button {
  margin-top: 20px;
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  background: linear-gradient(45deg, #ff00cc, #9900ff);
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.hero-text button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #ff00cc;
}

/* 📱 MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-img img {
    max-width: 100%;
  }

  .hero-text h1 {
    font-size: 28px;
  }
}


body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #2b0040;
}

/* SECTION */
.members {
  padding: 50px 20px;
}
.members a{
  text-decoration: none;
}

.members h2 {
  color: white;
  font-size: 32px;
  margin-bottom: 30px;
}

/* GRID */
.member-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* CARD */
.card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  transition: 0.4s;
}

/* ⭐ V CARD FIX (BIG + CENTER) */
.center-card {
  grid-column: 1 / -1;
  max-width: 700px;   /* 🔥 bigger */
  width: 100%;
  margin: 0 auto;
  padding: 26px 30px; /* bigger padding */
}

/* LEFT */
.card-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.card-left img {
  width: 75px;       /* 🔥 bigger image */
  height: 75px;
  border-radius: 50%;
  border: 3px solid white;
  transition: 0.3s;
}

/* TEXT */
.card h3 {
  color: white;
  margin: 0;
  font-size: 18px;
}

.card p {
  color: #ccc;
  font-size: 14px;
}

/* TAG */
.tag {
   background: linear-gradient(135deg,#0f0095,#302b63,#24243e);
  padding: 9px 16px;
  border-radius: 25px;
  color: white;
  font-size: 13px;
}

/* HOVER */
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(200,0,255,0.6);
}

.card:hover img {
  transform: scale(1.1);
}

/* CTA */
.cta-card {
  grid-column: span 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 40px;
  border-radius: 20px;
  background: linear-gradient(135deg, #210050, #7c2297);
  color: white;
}

.cta-text {
  max-width: 70%;
}

.cta-card button {
  margin-left: auto;
  background: rgb(68, 20, 84);
  color: #ffffff;
  border: none;
  padding: 12px 22px;
  border-radius: 30px;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {
  .member-grid {
    grid-template-columns: 1fr;
  }

  .center-card {
    max-width: 100%;
  }

  .cta-card {
    grid-column: span 1;
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .cta-text {
    max-width: 100%;
  }

  .cta-card button {
    margin-left: 0;
  }
}


/* songaudio */

.tracks {
  padding: 50px 20px;
  background: #2b0040;
}

.track-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* CARD */
.track-card {
   background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 20px;
  transition: 0.3s;
}

.track-card.playing {
  box-shadow: 0 0 25px #ff00ff;
}

/* TOP */
.track-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.track-top img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

/* TEXT */
.track-top h3 {
  color: white;
  margin: 0;
}

.track-top p {
  color: #ccc;
  font-size: 13px;
}

/* PLAY */
.play-btn {
  margin-left: auto;
  background: #ff0077;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  cursor: pointer;
}

/* TIME */
.time {
  display: flex;
  justify-content: space-between;
  color: #ccc;
  font-size: 12px;
  margin-top: 10px;
}

/* PROGRESS */
.progress {
  margin-top: 8px;
  height: 6px;
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
  cursor: pointer;
}

.bar {
  height: 100%;
  width: 0%;
  background: #ff00ff;
}

/* ACTION BUTTONS */
.actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
}

/* DOWNLOAD */
.download {
  background: linear-gradient(45deg, #405b61, #9312c2);
  padding: 6px 12px;
  border-radius: 20px;
  color: white;
  text-decoration: none;
  font-size: 13px;
}

/* YT */
.yt {
  background: linear-gradient(45deg, #8f12dd, #fc4eff);
  padding: 6px 12px;
  border-radius: 20px;
  color: white;
  text-decoration: none;
  font-size: 13px;
}

/* MOBILE */
@media (max-width: 768px) {
  .track-grid {
    grid-template-columns: 1fr;
  }
}


/* info */

.info-section {
  padding: 50px 20px;
  background: #2b0040;
}

/* GRID */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 💻 3 side */
  gap: 25px;
}

/* CARD */
.info-card {
 background: #2b0040;
  padding: 25px;
  border-radius: 20px;
  color: white;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
   box-shadow: 0 0 30px rgba(109, 46, 126, 0.38);
}

/* HOVER MAGIC */
.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(200,0,255,0.6);
}

/* TITLE */
.info-card h2 {
  margin-bottom: 15px;
}

/* LIST */
.info-card ul {
  padding-left: 18px;
  margin-bottom: 15px;
}

.info-card li {
  margin-bottom: 8px;
}

/* BUTTON */
.info-card button {
  margin-top: 10px;
  padding: 10px 18px;
  border: none;
  border-radius: 25px;
  background: linear-gradient(45deg, #ff00cc, #9900ff);
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.info-card button:hover {
  transform: scale(1.08);
  box-shadow: 0 0 15px #ff00cc;
}

/* ✨ subtle glow dot */
.info-card::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #ff00ff;
  border-radius: 50%;
  top: 20%;
  left: 70%;
  opacity: 0.6;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr; /* single */
  }
}


/* 3column */

.extra-section {
  padding: 50px 20px;
  background: #2b0040;
}

/* GRID */
.extra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 💻 3 side */
  gap: 25px;
}

/* CARD */
.extra-card {
 background: #2b0040;
  padding: 25px;
  border-radius: 20px;
  color: white;
  box-shadow: 0 0 30px rgba(109, 46, 126, 0.38);
  transition: 0.4s;
}

.extra-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 35px rgba(200,0,255,0.6);
}

/* INPUT */
.extra-card input,
.extra-card textarea {
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  border-radius: 10px;
  border: none;
 background: #2b0040;
  color: white;
}

/* BUTTON */
.extra-card button {
  margin-top: 15px;
  width: 100%;
  padding: 10px;
  border-radius: 25px;
  border: none;
  background: linear-gradient(45deg, #ff00cc, #9900ff);
  color: white;
  cursor: pointer;
}

/* 🔥 SOCIAL DESIGN */
.social-list {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 12px;
  text-decoration: none;
  color: white;
  background: rgba(255,255,255,0.08);
  transition: 0.3s;
}

/* ICON */
.social-list span {
  font-size: 18px;
}

/* HOVER EFFECT */
.social-list a:hover {
  transform: translateX(8px);
  background: linear-gradient(45deg, #ff00cc, #9900ff);
  box-shadow: 0 0 15px #ff00cc;
}


/* 📱 MOBILE (single column) */
@media (max-width: 768px) {
  .extra-grid {
    grid-template-columns: 1fr; /* 👉 1 ta kore niche niche */
  }
}


/* SECTION FIX */
.coming-section {
  padding: 10px 20px 10px; /* 🔥 top-bottom space */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* CARD */
.coming-box {
  max-width: 500px;
  width: 100%;
  text-align: center;
  padding: 35px 25px;
  border-radius: 20px;

 background: rgba(255,255,255,0.08);
  box-shadow: 0 0 30px rgba(109, 46, 126, 0.38);
}

/* TITLE */
.coming-box h1 {
  color: white;
  font-size: 28px;
  margin-bottom: 10px;
}

/* TEXT */
.coming-box p {
  color: #ddd;
  font-size: 14px;
  margin-bottom: 20px;
}

/* BUTTON */
.coming-box button {
  padding: 10px 25px;
  border-radius: 25px;
  border: none;
  background: linear-gradient(45deg, #ff00cc, #9900ff);
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.coming-box button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #ff00cc;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
  .coming-section {
    padding: 20px 15px 20px;
  }

  .coming-box h1 {
    font-size: 22px;
  }
}


/* footer */

.bts-footer {
  position: relative;
  margin-top: 80px;
  padding: 50px 20px;
  text-align: center;
  color: white;
  background: transparent;
  overflow: hidden;
}

/* CONTENT */
.footer-content h2 {
  margin-bottom: 10px;
}

.footer-content p {
  color: #ccc;
  margin-bottom: 15px;
}

/* LINKS */
.footer-links {
  margin-bottom: 20px;
}

.footer-links a {
  margin: 0 10px;
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ff00cc;
}

/* COPYRIGHT */
.copy {
  font-size: 13px;
  opacity: 0.7;
}

/* 🔥 FLOATING SYMBOL BACKGROUND */
.footer-bg span {
  position: absolute;
  font-size: 40px;
  color: white;
  opacity: 0.05; /* 🔥 subtle */
  animation: float 10s infinite ease-in-out;
}

/* random positions */
.footer-bg span:nth-child(1) { top: 10%; left: 20%; }
.footer-bg span:nth-child(2) { top: 50%; left: 70%; }
.footer-bg span:nth-child(3) { top: 80%; left: 30%; }
.footer-bg span:nth-child(4) { top: 30%; left: 80%; }

/* animation */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}

/* 📱 MOBILE */
@media (max-width: 768px) {
  .footer-bg span {
    font-size: 30px;
  }
}



/* default cursor hide */
body{
  cursor:none;
}
/* rainnnn */

/* canvas */
#fxCanvas{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  z-index:99998;
  pointer-events:none;
}

/* 🔥 FORCE visible cursor */
#fxCursor{
  position:fixed;
  width:14px;
  height:14px;
  background:rgb(255, 0, 183);
  border-radius:50%;
  z-index:999999; /* 🔥 always top */
  pointer-events:none;
  transform:translate(-50%,-50%);
  box-shadow:
    0 0 10px #680071,
    0 0 25px #5b005a,
    0 0 40px #ba00da;
}

/* light */

/* 📍 lightstick position */
#lightStick{
  position:fixed;
  top:50%;
  right:15px;
  transform:translateY(-50%);
  z-index:999999;
  cursor:pointer;
}

#lightStick img{
  width:60px;
  animation: float 2s infinite ease-in-out;
}

@keyframes float{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-6px);}
}

/* switch */
#stickOn{ display:none; }

/* 🌑 dark screen */
#darkOverlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.7);
  opacity:0;
  pointer-events:none;
  transition:0.4s;
  z-index:99990;
}

#darkOverlay.active{
  opacity:1;
}

/* 🌧️ rain */
#rainCanvas{
  position:fixed;
  inset:0;
  z-index:99995;
  pointer-events:none;
}


/* member */


body{
  margin:0;
  font-family:sans-serif;
  background:#120021;
  color:#fff;
}

/* section */
.taehyung{
  position:relative;
  height:100vh;
  overflow:hidden;
  display:flex;
  align-items:center;
}

/* 🖼️ IMAGE (HTML only) */
.bg-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
}

/* 🎭 overlay */
.taehyung::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to right,
    rgba(0,0,0,0.75),
    rgba(120,0,180,0.4)
  );
  z-index:1;
}

/* content */
.taehyung-content{
  position:relative;
  z-index:2;
  padding-left:80px;
  max-width:450px;
}

/* text */
.taehyung-content h1{
  font-size:60px;
  margin:0;
}

.taehyung-content span{
  color:#d946ef;
}

.taehyung-content h3{
  margin:10px 0;
  font-weight:300;
}

.taehyung-content p{
  opacity:0.8;
  margin:5px 0;
}

/* 🔥 button */
.neo-btn{
  margin-top:25px;
  padding:12px 28px;
  border-radius:30px;
  border:none;
  background:linear-gradient(45deg,#a855f7,#d946ef);
  color:#fff;
  cursor:pointer;
  transition:0.3s;
}

.neo-btn:hover{
  box-shadow:0 0 20px #d946ef;
  transform:scale(1.05);
}

/* ⬇ scroll arrow */
.scroll-down{
  position:absolute;
  bottom:-40px;
  font-size:22px;
  opacity:0.7;
  animation:float 1.5s infinite;
}

@keyframes float{
  0%{transform:translateY(0);}
  50%{transform:translateY(10px);}
  100%{transform:translateY(0);}
}

/* 📱 mobile */
@media(max-width:768px){
  .taehyung-content{
    padding:20px;
    text-align:center;
    margin:auto;
  }

  .taehyung-content h1{
    font-size:35px;
  }
}




.mv-section{
  /* background:#2a2a2a; */
  text-align:center;
  padding:60px 20px;
}

.mv-section h2{
  font-size:18px;
  font-weight:500;
  margin-bottom:20px;
}

/* video box */
.mv-box{
  width:300px;
  margin:auto;
  border-radius:10px;
  overflow:hidden;
}

.mv-box img{
  width:100%;
  display:block;
  border-radius:10px;
}

/* button */
.mv-btn{
  margin-top:20px;
  padding:8px 20px;
  border-radius:20px;
  border:1px solid #d946ef;
  background:transparent;
  color:#fff;
  cursor:pointer;
  transition:0.3s;
}

.mv-btn:hover{
  background:#d946ef;
  box-shadow:0 0 12px #d946ef;
}

/* 📱 mobile */
@media(max-width:768px){
  .mv-box{
    width:90%;
  }
}


.disc-section{
  /* background:#000; */
  text-align:center;
  padding:60px 20px;
}

.disc-section h2{
  font-size:18px;
  font-weight:500;
  margin-bottom:30px;
}

/* grid */
.disc-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:15px;
  max-width:800px;
  margin:auto;
}

/* album */
.disc-grid img{
  width:100%;
  border-radius:10px;
  transition:0.3s;
  cursor:pointer;
}

/* hover */
.disc-grid img:hover{
  transform:scale(1.1);
  box-shadow:0 0 15px #d946ef;
}

/* button */
.disc-btn{
  margin-top:30px;
  padding:8px 20px;
  border-radius:20px;
  border:1px solid #d946ef;
  background:transparent;
  color:#fff;
  cursor:pointer;
  transition:0.3s;
}

.disc-btn:hover{
  background:#d946ef;
  box-shadow:0 0 12px #d946ef;
}

/* 📱 mobile */
@media(max-width:768px){
  .disc-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}


.signup{
  text-align:center;
  padding:60px 20px;
  /* background:linear-gradient(160deg,#1a002b,#2b0040,#3d0066); */
}

/* heading */
.signup h2{
  font-size:18px;
  margin-bottom:10px;
}

.sub{
  opacity:0.7;
  margin-bottom:30px;
}

/* form */
.form-box{
  max-width:400px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:12px;
}

/* inputs */
.form-box input{
  padding:10px;
  border-radius:8px;
  border:none;
  outline:none;
  background:rgba(255,255,255,0.1);
  color:#fff;
}

/* checkbox */
.check{
  font-size:12px;
  opacity:0.8;
  display:flex;
  gap:8px;
  align-items:center;
  justify-content:center;
}

/* button */
.form-box button{
  margin-top:10px;
  padding:10px;
  border:none;
  border-radius:20px;
  background:#d946ef;
  color:#fff;
  cursor:pointer;
  transition:0.3s;
}

.form-box button:hover{
  box-shadow:0 0 15px #d946ef;
  transform:scale(1.05);
}

/* gallery */

/* 🔥 FILTER POSITION */
.filters{
  position:sticky;
  top:60px; /* navbar height */
  z-index:1000;

  width:100%;
  background:#120021;

  padding:10px 0;
}

/* container */
.filter-inner{
  display:flex;
  justify-content:center;
  flex-wrap:wrap; /* 🔥 key */
  gap:10px;

  max-width:1000px;
  margin:auto;
  padding:0 10px;
}

/* buttons */
.filters button{
  padding:6px 14px;
  border:none;
  border-radius:20px;
  background:#1a002b;
  color:#fff;
  white-space:nowrap;
  font-size:13px;
  transition:.3s;
}

.filters button:hover{
  background:#d946ef;
}

/* 📱 MOBILE FIX */
@media(max-width:768px){

  .filters{
    top:60px;
  }

  .filter-inner{
    justify-content:center;
    flex-wrap:wrap; /* 🔥 no scroll, full visible */
  }

  .filters button{
    font-size:12px;
    padding:6px 12px;
  }

}

/* image */

.neo-gallery{
  padding:20px;
}

/* grid */
.neo-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  max-width:1000px;
  margin:auto;
}

/* card */
.neo-card{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  background:#1a002b;
}

/* image */
.neo-card img{
  width:100%;
  height:220px;
  object-fit:cover;

  border-radius:18px;

  opacity:0;
  filter:blur(15px);
  transform:scale(1.05);

  transition:0.5s ease;
  cursor:pointer;
}

/* loaded */
.neo-card img.neo-show{
  opacity:1;
  filter:blur(0);
  transform:scale(1);
}

/* loader */
.neo-loader{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,#1a002b,#2d0055,#1a002b);
  animation:neoShine 1s infinite;
}

@keyframes neoShine{
  0%{background-position:-200px}
  100%{background-position:200px}
}

/* hover */
.neo-card:hover img{
  transform:scale(1.06);
}

/* mobile */
@media(max-width:768px){
  .neo-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .neo-card img{
    height:170px;
  }
}

/* viewmore */

.neo-more-wrap{
  text-align:center;
  margin:40px 0;
}

/* button */
.neo-more-btn{
  position:relative;
  padding:12px 30px;
  border:none;
  border-radius:30px;
  background:linear-gradient(45deg,#a855f7,#d946ef);
  color:#fff;
  font-size:15px;
  cursor:pointer;
  overflow:hidden;
  transition:0.3s;
}

/* hover glow */
.neo-more-btn:hover{
  box-shadow:0 0 20px #d946ef;
  transform:scale(1.05);
}

/* text */
.neo-more-btn .text{
  position:relative;
  z-index:2;
}

/* loader hidden */
.neo-more-btn .loader{
  position:absolute;
  inset:0;
  display:flex;
  justify-content:center;
  align-items:center;
  opacity:0;
}

/* spinner */
.neo-more-btn .loader::after{
  content:"";
  width:18px;
  height:18px;
  border:3px solid #fff;
  border-top:3px solid transparent;
  border-radius:50%;
  animation:spin 1s linear infinite;
}

@keyframes spin{
  100%{transform:rotate(360deg);}
}

/* loading state */
.neo-more-btn.loading .text{
  opacity:0;
}

.neo-more-btn.loading .loader{
  opacity:1;
}
/* YT VIDEO */

/* section */
.yt-clean{
  padding:30px 15px;
}

/* grid */
.yt-clean-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:25px;
  max-width:1000px;
  margin:auto;
}

/* card */
.yt-clean-card{
  background:rgba(20,0,40,0.6);
  border-radius:16px;
  overflow:hidden;
  backdrop-filter:blur(10px);

  box-shadow:0 0 12px rgba(217,70,239,0.25);
  transition:0.3s;
}

/* iframe */
.yt-clean-card iframe{
  width:100%;
  height:230px;
  border:none;
  display:block;
}

/* 🔥 neon border effect */
.yt-clean-card::before{
  content:"";
  position:absolute;
}

/* caption */
.yt-clean-card p{
  padding:10px;
  text-align:center;
  font-size:13px;
  color:#ddd;

  background:linear-gradient(45deg,#1a002b,#2b0040);
}

/* hover */
.yt-clean-card:hover{
  transform:translateY(-6px) scale(1.02);
  box-shadow:0 0 25px #d946ef;
}

/* mobile */
@media(max-width:768px){
  .yt-clean-grid{
    grid-template-columns:1fr;
  }

  .yt-clean-card iframe{
    height:200px;
  }
}


/* game */
.run-game{
  position:relative;
  width:350px;
  height:200px;
  margin:50px auto;
  overflow:hidden;

  background:#120021;
  border-radius:15px;
  box-shadow:0 0 20px #d946ef;
}

/* runner */
#runner{
  position:absolute;
  bottom:0;
  left:30px;
  font-size:30px;
}

/* obstacle */
#obstacle{
  position:absolute;
  bottom:0;
  right:-30px;
  width:20px;
  height:40px;
  background:#ff00cc;

  animation:move 2s linear infinite;
}

/* move */
@keyframes move{
  0%{right:-30px;}
  100%{right:100%;}
}

/* jump */
.jump{
  animation:jump 0.5s;
}

@keyframes jump{
  0%{bottom:0;}
  50%{bottom:80px;}
  100%{bottom:0;}
}

/* score */
.score{
  position:absolute;
  top:10px;
  left:10px;
  color:#fff;
}

/* game over */
#runOver{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.9);
  display:none;
  justify-content:center;
  align-items:center;
  flex-direction:column;
  color:#fff;
}


/* disco */

.disc-app{
  max-width:360px;
  margin:auto;
  padding:15px;
  background:#140024;
  border-radius:20px;
  color:#fff;
}

/* pages */
.page{display:none;}
.page.active{display:block;}

/* grid */
.album-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:15px;
}

/* card */
.album-card{
  text-align:center;
  cursor:pointer;
  transition:0.3s;
}

.album-card img{
  width:100%;
  border-radius:15px;
}

.album-card:hover{
  transform:scale(1.05);
}

/* detail */
#albumImg{
  width:100%;
  border-radius:15px;
  margin:10px 0;
}

/* track */
.track{
  padding:10px;
  border-bottom:1px solid #333;
  cursor:pointer;
}

.track:hover{
  background:#2a0045;
}

/* player */
#playerImg{
  width:100%;
  border-radius:15px;
  margin:10px 0;
}


/* about */

.iframe-wrap{
  display:flex;
  justify-content:center;
  align-items:center;

  width:100%;
  min-height:100vh;

  padding:20px;
}

/* iframe box */
.iframe-wrap iframe{
  width:90%;
  height:80vh;

  border:none;
  border-radius:20px;

  box-shadow:0 0 30px rgba(217,70,239,0.6);
  background:#000;
}

/* tip */

.donate-btn{
  position:fixed;
  bottom:20px;
  right:20px;

  padding:12px 18px;
  border-radius:30px;

  background:linear-gradient(45deg,#a855f7,#d946ef);
  color:#fff;
  text-decoration:none;
  font-size:14px;
  font-weight:bold;

  box-shadow:0 0 15px rgba(217,70,239,0.6);

  z-index:9999;

  animation:floatBtn 2s ease-in-out infinite;
  transition:0.3s;
}

/* hover */
.donate-btn:hover{
  transform:scale(1.08);
  box-shadow:0 0 25px #d946ef;
}

/* floating animation */
@keyframes floatBtn{
  0%{transform:translateY(0);}
  50%{transform:translateY(-6px);}
  100%{transform:translateY(0);}
}

/* mobile */
@media(max-width:768px){
  .donate-btn{
    bottom:15px;
    right:15px;
    padding:10px 15px;
    font-size:13px;
  }
}