:root{
  --bg:#07070a;
  --bg2:#0b0b10;
  --panel:#111117;
  --panel2:#171720;
  --text:#f8f8fb;
  --muted:#9699a8;
  --line:rgba(255,255,255,.10);
  --line2:rgba(255,255,255,.16);
  --pink:#ff4fd8;
  --violet:#7d5cff;
  --green:#32e6a0;
  --header:82px;
  --max:1480px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth;background:var(--bg)}
body{
  margin:0;
  min-height:100vh;
  color:var(--text);
  background:
    radial-gradient(900px 500px at 78% -12%,rgba(125,92,255,.13),transparent 62%),
    radial-gradient(760px 460px at 9% 12%,rgba(255,79,216,.09),transparent 65%),
    linear-gradient(180deg,#09090c 0%,#050507 100%);
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.18;
  background-image:linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
  background-size:36px 36px;
  mask-image:linear-gradient(to bottom,black,transparent 70%);
}

.navbar{
  position:fixed;
  top:0;left:0;right:0;
  height:var(--header);
  z-index:1000;
  background:rgba(7,7,10,.82);
  border-bottom:1px solid rgba(255,255,255,.08);
  box-shadow:0 12px 45px rgba(0,0,0,.22);
  backdrop-filter:blur(20px) saturate(140%);
  -webkit-backdrop-filter:blur(20px) saturate(140%);
}
.nav-inner{
  width:min(var(--max),calc(100% - 32px));
  height:100%;
  margin:0 auto;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:18px;
}
.btn{
  appearance:none;
  width:46px;height:46px;
  border:1px solid var(--line2);
  border-radius:14px;
  background:rgba(255,255,255,.05);
  color:#fff;
  display:grid;
  place-items:center;
  cursor:pointer;
  z-index:1400;
  transition:transform .2s ease,background .2s ease,border-color .2s ease;
}
.btn:hover{background:rgba(255,255,255,.09);border-color:rgba(255,79,216,.32)}
.btn span{font-size:20px}
.btn.click span{font-size:0}
.btn.click span::after{
  content:"\f00d";
  font-family:"Font Awesome 5 Free";
  font-weight:900;
  font-size:20px;
}
.brand-wrap{min-width:0}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  width:max-content;
  color:#fff;
  text-decoration:none;
}
.brand-logo{
  width:175px;height:56px;
  display:flex;align-items:center;overflow:hidden;
}
.brand-logo img{
  width:175px;height:56px;
  object-fit:contain;object-position:left center;
  transform:scale(1.08);
  transform-origin:left center;
  filter:drop-shadow(0 10px 24px rgba(255,79,216,.20));
}
.brand-name{
  font-size:19px;
  font-weight:950;
  letter-spacing:.22em;
  color:#fff;
  white-space:nowrap;
}
.top-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:6px;
}
.top-actions a{
  width:42px;height:42px;
  display:grid;
  place-items:center;
  color:#a8aab7;
  text-decoration:none;
  border-radius:13px;
  transition:color .2s ease,background .2s ease,transform .2s ease;
}
.top-actions a:hover{
  color:#fff;
  background:rgba(255,255,255,.07);
  transform:translateY(-1px);
}
.top-actions i{font-size:18px}

/* Full viewport sidebar */
.sidebar{
  position:fixed !important;
  top:0 !important;
  left:0 !important;
  right:auto !important;
  bottom:0 !important;

  width:min(360px,92vw) !important;
  height:100vh !important;
  height:100dvh !important;
  min-height:100vh !important;

  z-index:5000;

  padding:20px 18px 28px;

  overflow-y:auto;
  overflow-x:hidden;
  overscroll-behavior:contain;

  background:
    radial-gradient(
      360px 260px at 42% 0%,
      rgba(125,92,255,.14),
      transparent 72%
    ),
    linear-gradient(
      180deg,
      #11101a 0%,
      #09090d 100%
    );

  border-right:1px solid rgba(255,255,255,.10);

  box-shadow:
    28px 0 90px rgba(0,0,0,.44);

  transform:translateX(-105%);
  transition:
    transform .32s cubic-bezier(.22,.9,.2,1);

  isolation:isolate;
}

.sidebar.show{
  transform:translateX(0);
}

/* Dark overlay behind sidebar */
.sidebar::after{
  content:"";

  position:fixed;
  top:0;
  left:100%;

  width:100vw;
  height:100vh;
  height:100dvh;

  background:rgba(0,0,0,.56);

  backdrop-filter:blur(3px);
  -webkit-backdrop-filter:blur(3px);

  opacity:0;
  visibility:hidden;

  transition:
    opacity .25s ease,
    visibility .25s ease;

  pointer-events:none;

  z-index:-1;
}

.sidebar.show::after{
  opacity:1;
  visibility:visible;
}


/* =========================================
   SIDEBAR HEADER
   ========================================= */

.sidebar-head{
  position:relative;

  display:flex;
  align-items:center;
  justify-content:flex-start;

  gap:14px;

  margin:2px 0 20px;
  padding:4px 68px 16px 2px;

  min-height:70px;

  border-bottom:1px solid rgba(255,255,255,.08);
}


/* Sidebar logo + name */
.sidebar-brand{
  min-width:0;

  display:flex;
  align-items:center;

  gap:12px;

  color:#fff;
  text-decoration:none;
}

.sidebar-brand img{
  display:block;

  width:100px;
  height:42px;

  object-fit:contain;
  object-position:left center;

  flex:0 0 auto;

  filter:
    drop-shadow(0 8px 20px rgba(255,79,216,.18));
}

.sidebar-brand span{
  color:#fff;

  font-weight:900;
  font-size:18px;

  letter-spacing:.17em;

  white-space:nowrap;
}


/* =========================================
   CLOSE BUTTON
   ========================================= */

.sidebar-close{
  appearance:none;

  position:absolute;

  top:0;
  right:0;

  z-index:20;

  width:54px;
  height:54px;

  flex:0 0 54px;

  display:flex;
  align-items:center;
  justify-content:center;

  border:1px solid rgba(255,255,255,.16);

  border-radius:16px;

  background:rgba(255,255,255,.055);

  color:#fff;

  font-size:20px;

  cursor:pointer;

  box-shadow:
    0 10px 30px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.06);

  transition:
    transform .2s ease,
    background .2s ease,
    border-color .2s ease,
    box-shadow .2s ease;
}

.sidebar-close:hover{
  background:rgba(255,79,216,.14);

  border-color:rgba(255,79,216,.35);

  transform:scale(1.05);

  box-shadow:
    0 14px 36px rgba(0,0,0,.34),
    0 0 24px rgba(255,79,216,.08);
}

.sidebar-close:active{
  transform:scale(.96);
}

.sidebar-close i{
  pointer-events:none;
}


/* =========================================
   NAVIGATION
   ========================================= */

.sidebar ul{
  list-style:none;
  padding:0;
  margin:0;
}

.sidebar li{
  margin:5px 0;
}

.sidebar li a{
  display:flex;
  align-items:center;
  justify-content:space-between;

  gap:12px;

  min-height:48px;

  padding:0 14px;

  color:#d8d9e2;

  text-decoration:none;

  border:1px solid transparent;

  border-radius:14px;

  font-size:14px;
  font-weight:750;

  transition:
    color .2s ease,
    background .2s ease,
    border-color .2s ease,
    transform .2s ease;
}

.sidebar li a:hover{
  color:#fff;

  background:rgba(255,255,255,.055);

  border-color:rgba(255,255,255,.07);

  transform:translateX(2px);
}

.sidebar li.active > a{
  color:#fff;

  background:
    linear-gradient(
      90deg,
      rgba(255,79,216,.15),
      rgba(125,92,255,.08)
    );

  border-color:rgba(255,79,216,.22);

  box-shadow:
    inset 3px 0 0 var(--pink),
    0 8px 26px rgba(255,79,216,.06);
}


/* =========================================
   DROPDOWN MENUS
   ========================================= */

.sidebar ul ul{
  display:none;

  margin:6px 0 8px;
  padding-left:10px;
}

.sidebar ul .feat-show.show,
.sidebar ul .serv-show.show1{
  display:block;
}

.sidebar ul ul a{
  min-height:41px;

  padding-left:16px;

  color:#a8aab6;

  font-size:12px;

  border-radius:12px;
}

.sidebar ul ul a:hover{
  color:#fff;

  background:rgba(255,255,255,.045);
}

.sidebar a span{
  position:static;

  flex:0 0 auto;

  transition:
    transform .2s ease;
}

.sidebar a span.rotate{
  transform:rotate(180deg);
}


/* =========================================
   LOGOUT
   ========================================= */

.sidebar-logout{
  width:100%;

  min-height:52px;

  margin-top:18px;

  border:1px solid rgba(255,255,255,.12);

  border-radius:16px;

  background:rgba(255,255,255,.05);

  color:#fff;

  font:inherit;

  font-weight:800;

  cursor:pointer;

  transition:
    background .2s ease,
    border-color .2s ease,
    transform .2s ease,
    box-shadow .2s ease;
}

.sidebar-logout:hover{
  background:rgba(255,79,216,.12);

  border-color:rgba(255,79,216,.24);

  transform:translateY(-1px);

  box-shadow:
    0 12px 30px rgba(255,79,216,.06);
}

.sidebar-logout:active{
  transform:translateY(0);
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width:700px){

  .sidebar{
    width:100vw !important;
    max-width:none !important;

    padding:
      16px
      14px
      28px;
  }

  .sidebar-head{
    min-height:68px;

    padding-right:64px;
  }

  .sidebar-brand img{
    width:90px;
    height:38px;
  }

  .sidebar-brand span{
    font-size:16px;
  }

  .sidebar-close{
    width:50px;
    height:50px;

    border-radius:15px;
  }

}
/* Prevent unwanted horizontal shifting */
body.nav-open{overflow:hidden}
main{
  width:min(var(--max),calc(100% - 40px));
  margin:0 auto;
  padding:calc(var(--header) + 24px) 0 70px;
}
.site-search{
  position:relative;
  width:min(620px, calc(100% - 36px));
  margin:0 auto 4px;
  padding-top:50px; /* navbar height + desired gap */
  z-index:900;
}

.site-search-box{
  display:flex;
  align-items:center;
  gap:12px;
  min-height:56px;
  padding:0 16px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  background:rgba(14,14,19,.84);
  box-shadow:
    0 16px 45px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.05);
}.site-search-box input{
  flex:1;
  min-width:0;
  border:0;outline:0;
  background:transparent;
  color:#fff;
  font-size:14px;
}
.site-search-box input::placeholder{color:#777a8a}
#music-search-clear{border:0;background:transparent;color:#9598a7;cursor:pointer}

.music-search-results{
  position:absolute;
  top:calc(100% + 9px);
  left:0;right:0;
  max-height:420px;
  overflow:auto;
  padding:6px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  background:rgba(13,13,18,.98);
  box-shadow:0 26px 80px rgba(0,0,0,.42);
}
.music-search-result{border-radius:12px;color:#fff}
.music-search-result:hover{background:rgba(255,255,255,.06)}
.music-search-result-title{color:#fff}
.music-search-result-artist{color:#858897}

.mm{
  position:relative;
  width:100%;
  min-height:310px;
  margin:16px 0 40px;
  overflow:hidden;
  display:flex;
  align-items:flex-end;
  padding:32px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:28px;
  background:
    linear-gradient(115deg,rgba(5,5,7,.93) 10%,rgba(5,5,7,.42) 62%,rgba(125,92,255,.12) 100%),
    url("Adq/q.jpg") center/cover no-repeat;
  box-shadow:0 30px 80px rgba(0,0,0,.30);
  animation:slide 120s infinite;
}
.mm h1{
  position:relative;z-index:2;
  margin:0;
  color:#fff;
  font-size:clamp(30px,4vw,58px);
  line-height:1;
  font-weight:950;
  letter-spacing:-.045em;
}
.mm{font-size:0}
.mm::after{
  content:"ADVERTISEMENT  •  CONTACT-100101010";
  position:absolute;
  left:32px;bottom:24px;z-index:2;
  font-size:10px;font-weight:850;letter-spacing:.11em;
  color:#dadbe2;
  padding:8px 11px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  background:rgba(0,0,0,.33);
}
@keyframes slide{
  5%{background-image:linear-gradient(115deg,rgba(5,5,7,.93) 10%,rgba(5,5,7,.42) 62%,rgba(125,92,255,.12) 100%),url("Adq/q1.jpg")}
  10%{background-image:linear-gradient(115deg,rgba(5,5,7,.93) 10%,rgba(5,5,7,.42) 62%,rgba(125,92,255,.12) 100%),url("Adq/q2.jpg")}
  15%{background-image:linear-gradient(115deg,rgba(5,5,7,.93) 10%,rgba(5,5,7,.42) 62%,rgba(125,92,255,.12) 100%),url("Adq/q.jpg")}
  20%{background-image:linear-gradient(115deg,rgba(5,5,7,.93) 10%,rgba(5,5,7,.42) 62%,rgba(125,92,255,.12) 100%),url("Adq/q4.jpg")}
  25%{background-image:linear-gradient(115deg,rgba(5,5,7,.93) 10%,rgba(5,5,7,.42) 62%,rgba(125,92,255,.12) 100%),url("Adq/q5.jpg")}
  30%{background-image:linear-gradient(115deg,rgba(5,5,7,.93) 10%,rgba(5,5,7,.42) 62%,rgba(125,92,255,.12) 100%),url("Adq/q6.jpg")}
  35%{background-image:linear-gradient(115deg,rgba(5,5,7,.93) 10%,rgba(5,5,7,.42) 62%,rgba(125,92,255,.12) 100%),url("Adq/q8.jpg")}
  40%{background-image:linear-gradient(115deg,rgba(5,5,7,.93) 10%,rgba(5,5,7,.42) 62%,rgba(125,92,255,.12) 100%),url("Adq/q9.jpg")}
  45%{background-image:linear-gradient(115deg,rgba(5,5,7,.93) 10%,rgba(5,5,7,.42) 62%,rgba(125,92,255,.12) 100%),url("Adq/q10.jpg")}
  50%{background-image:linear-gradient(115deg,rgba(5,5,7,.93) 10%,rgba(5,5,7,.42) 62%,rgba(125,92,255,.12) 100%),url("Adq/q11.jpg")}
  55%{background-image:linear-gradient(115deg,rgba(5,5,7,.93) 10%,rgba(5,5,7,.42) 62%,rgba(125,92,255,.12) 100%),url("Adq/q12.jpg")}
  60%{background-image:linear-gradient(115deg,rgba(5,5,7,.93) 10%,rgba(5,5,7,.42) 62%,rgba(125,92,255,.12) 100%),url("Adq/q13.jpg")}
  75%{background-image:linear-gradient(115deg,rgba(5,5,7,.93) 10%,rgba(5,5,7,.42) 62%,rgba(125,92,255,.12) 100%),url("Adq/q14.jpg")}
  80%{background-image:linear-gradient(115deg,rgba(5,5,7,.93) 10%,rgba(5,5,7,.42) 62%,rgba(125,92,255,.12) 100%),url("Adq/q15.jpg")}
  85%{background-image:linear-gradient(115deg,rgba(5,5,7,.93) 10%,rgba(5,5,7,.42) 62%,rgba(125,92,255,.12) 100%),url("Adq/q16.jpg")}
  90%{background-image:linear-gradient(115deg,rgba(5,5,7,.93) 10%,rgba(5,5,7,.42) 62%,rgba(125,92,255,.12) 100%),url("Adq/q17.jpg")}
}

.popular_creator,.popular_creator1,.popular_creator2{
  width:100%;margin:0 0 42px;
}
.popular_creator h1,.popular_creator1 h1,.popular_creator2 h1{
  display:flex;align-items:center;gap:10px;
  margin:0 0 16px;
  color:#fff;
  font-size:clamp(21px,2vw,29px);
  font-weight:930;
  letter-spacing:-.035em;
}
.popular_creator h1::after,.popular_creator1 h1::after,.popular_creator2 h1::after{
  content:"";flex:1;height:1px;
  margin-left:12px;
  background:linear-gradient(90deg,rgba(255,255,255,.14),transparent);
}
.artists_list,.artists_list1,.artists_list2{
  display:flex;
  gap:14px;
  width:100%;
  height:auto;
  padding:4px 2px 14px;
  overflow-x:auto;
  overflow-y:hidden;
  justify-content:flex-start;
  scrollbar-width:thin;
  scrollbar-color:rgba(255,79,216,.62) transparent;
}
.artists_list::-webkit-scrollbar,.artists_list1::-webkit-scrollbar,.artists_list2::-webkit-scrollbar{height:6px}
.artists_list::-webkit-scrollbar-thumb,.artists_list1::-webkit-scrollbar-thumb,.artists_list2::-webkit-scrollbar-thumb{
  background:linear-gradient(90deg,var(--pink),var(--violet));
  border-radius:999px;
}
.artist,.artist1,.artist2{
  position:relative;
  flex:0 0 190px;
  width:190px;height:260px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.11);
  border-radius:19px;
  background:#111117;
  box-shadow:0 12px 34px rgba(0,0,0,.24);
  transition:transform .25s ease,border-color .25s ease,box-shadow .25s ease;
}
.artist:hover,.artist1:hover,.artist2:hover{
  transform:translateY(-6px);
  border-color:rgba(255,255,255,.22);
  box-shadow:0 22px 55px rgba(0,0,0,.34),0 0 0 1px rgba(255,79,216,.08);
}
.artist::after,.artist1::after,.artist2::after{
  content:"";
  position:absolute;inset:0;z-index:1;
  background:linear-gradient(180deg,transparent 38%,rgba(4,4,7,.08) 52%,rgba(4,4,7,.94) 100%);
  pointer-events:none;
}
.artist img,.artist1 img,.artist2 img{
  display:block;width:100%;height:100%;
  object-fit:cover;
  transition:transform .45s ease,filter .3s ease;
}
.artist:hover img,.artist1:hover img,.artist2:hover img{
  transform:scale(1.06);filter:saturate(1.08);
}
.artist_desc,.artist_desc1,.artist_desc2{
  position:absolute !important;
  left:9px;right:9px;bottom:41px;z-index:4;
  width:auto !important;
  padding:8px 10px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:11px;
  background:rgba(7,7,10,.56) !important;
  backdrop-filter:blur(10px);
}
.artist_desc p,.artist_desc1 p,.artist_desc2 p{
  display:flex;align-items:center;gap:7px;
  margin:0 !important;
  color:#fff !important;
  font-size:9px;
  font-weight:820;
  white-space:nowrap;
}
.Name_Artist,.Name_Artist1,.Name_Artist2{
  position:absolute;left:11px;right:11px;bottom:11px;z-index:4;
}
.Name_Artist h5,.Name_Artist1 h5,.Name_Artist2 h5{
  margin:0;color:#fff;
  font-size:12px;line-height:1.15;
  font-weight:900;letter-spacing:.02em;
  text-transform:uppercase;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}

@media (max-width:1100px){
  .brand-logo,.brand-logo img{width:145px;height:50px}
  .brand-name{font-size:17px}
  .artist,.artist1,.artist2{flex-basis:175px;width:175px;height:245px}
  main{width:min(100% - 26px,var(--max))}
}
@media (max-width:700px){
  :root{--header:68px}
  .nav-inner{width:calc(100% - 18px);grid-template-columns:auto 1fr auto;gap:10px}
  .btn{width:42px;height:42px}
  .brand-logo,.brand-logo img{width:112px;height:42px}
  .brand-name{display:none}
  .top-actions{gap:0}
  .top-actions a{width:34px;height:34px;border-radius:10px}
  .top-actions i{font-size:15px}
  .sidebar{width:100vw !important;padding:16px 14px 25px}
  .sidebar-brand img{width:90px;height:36px}
  .sidebar-brand span{font-size:16px}
  main{width:calc(100% - 16px);padding-top:calc(var(--header) + 12px)}
  .site-search{width:calc(100% - 10px)}
  .site-search-box{min-height:50px;border-radius:15px}
  .mm{min-height:220px;margin-bottom:30px;padding:24px 18px;border-radius:22px}
  .mm h1{font-size:31px}
  .mm::after{left:18px;bottom:18px;font-size:8px}
  .popular_creator,.popular_creator1,.popular_creator2{margin-bottom:31px}
  .popular_creator h1,.popular_creator1 h1,.popular_creator2 h1{font-size:18px}
  .artist,.artist1,.artist2{flex-basis:148px;width:148px;height:211px;border-radius:16px}
  .artist_desc,.artist_desc1,.artist_desc2{left:7px;right:7px;bottom:36px;padding:6px 7px}
  .artist_desc p,.artist_desc1 p,.artist_desc2 p{font-size:7px;gap:4px}
  .Name_Artist,.Name_Artist1,.Name_Artist2{left:8px;right:8px;bottom:8px}
  .Name_Artist h5,.Name_Artist1 h5,.Name_Artist2 h5{font-size:9px}
}
@media (prefers-reduced-motion:reduce){
  *{scroll-behavior:auto !important;animation-duration:.01ms !important;transition-duration:.01ms !important}
}