/* layout */
.wrap{ max-width: var(--max); margin:0 auto; padding: 22px; }

.skip-link{
  position:absolute;
  left:-999px;
  top:10px;
  padding:10px 14px;
  background: #fff;
  color: #000;
  z-index: 2000;
  border-radius: 10px;
  text-decoration:none;
  box-shadow: 0 10px 20px rgba(0,0,0,.4);
}
.skip-link:focus{
  left:12px;
}

header{
  position:sticky; top:0; z-index:20;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(10,6,18,.78), rgba(10,6,18,.42));
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.nav{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px;
}

.brand{
  display:flex; align-items:center; gap:12px;
  min-width: 210px;
}

.mark{
  width:42px; height:42px; border-radius: 14px;
  background: radial-gradient(circle at 30% 25%, rgba(255,59,212,.95), rgba(155,92,255,.45) 45%, rgba(49,227,255,.35) 72%, rgba(0,0,0,.0) 100%);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 12px 30px rgba(0,0,0,.45), var(--glow-violet);
  position:relative;
  overflow:hidden;
}
.mark:before{
  content:"";
  position:absolute; inset:-30%;
  background: conic-gradient(from 90deg, rgba(49,227,255,.0), rgba(49,227,255,.25), rgba(255,59,212,.0), rgba(155,92,255,.25), rgba(49,227,255,.0));
  animation: spin 8s linear infinite;
  filter: blur(2px);
}
@keyframes spin{ to{ transform: rotate(360deg); } }

.brand b{
  display:block;
  font-size: 13px;
  letter-spacing: .26em;
  opacity:.92;
}
.brand span{
  display:block;
  font-size: 11px;
  color: rgba(246,242,255,.72);
  margin-top: 2px;
}

.links{
  display:flex; gap: 14px; align-items:center;
  flex-wrap: wrap;
  justify-content:flex-end;
}
.links a{
  font-size: 13px;
  color: rgba(246,242,255,.78);
  padding: 10px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: .2s ease;
}
.links a:hover{
  color: rgba(246,242,255,1);
  border-color: rgba(49,227,255,.22);
  box-shadow: var(--glow-blue);
}

.cta{
  display:flex; gap:10px; align-items:center;
}

.btn{
  border: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05));
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 14px;
  cursor:pointer;
  transition: all .25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
  font-weight: 650;
  letter-spacing:.02em;
  user-select:none;
  position: relative;
  overflow: hidden;
}

.btn:before{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover:before{
  width: 300px;
  height: 300px;
}

.btn:hover{ 
  transform: translateY(-3px) scale(1.05); 
  border-color: rgba(255,255,255,.35); 
  box-shadow: 0 16px 38px rgba(0,0,0,.45), 0 0 20px rgba(49,227,255,.2);
}

.btn:active{
  transform: translateY(-1px) scale(1.02);
}

.btn.neon{
  border-color: rgba(255,59,212,.35);
  box-shadow: 0 14px 34px rgba(0,0,0,.45), var(--glow-pink);
  background:
    radial-gradient(circle at 20% 0%, rgba(255,59,212,.25), transparent 55%),
    linear-gradient(180deg, rgba(255,59,212,.22), rgba(49,227,255,.10));
  animation: neon-pulse 2s ease-in-out infinite;
}

.btn.neon:hover{
  box-shadow: 0 18px 42px rgba(0,0,0,.55), 0 0 35px rgba(255,59,212,.45), 0 0 60px rgba(49,227,255,.25);
  animation: none;
}

@keyframes neon-pulse{
  0%, 100%{ box-shadow: 0 14px 34px rgba(0,0,0,.45), var(--glow-pink); }
  50%{ box-shadow: 0 16px 38px rgba(0,0,0,.5), 0 0 30px rgba(255,59,212,.5), 0 0 50px rgba(49,227,255,.2); }
}

/* hero */
.hero{
  padding: 46px 0 24px;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;
  align-items:stretch;
}

.panel{
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  backdrop-filter: blur(14px);
  box-shadow: 0 28px 70px rgba(0,0,0,.55);
  overflow:hidden;
  position:relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.panel:hover{
  transform: translateY(-4px);
  box-shadow: 0 32px 80px rgba(0,0,0,.65), 0 0 40px rgba(155,92,255,.15);
  border-color: rgba(155,92,255,.25);
}

.panel:before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(400px 200px at 15% 10%, rgba(255,59,212,.22), transparent 70%),
    radial-gradient(300px 240px at 80% 30%, rgba(49,227,255,.16), transparent 70%),
    radial-gradient(420px 260px at 35% 110%, rgba(155,92,255,.18), transparent 75%);
  pointer-events:none;
}

.hero-main{ padding: 22px 22px 18px; }

.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(49,227,255,.20);
  background: rgba(49,227,255,.06);
  color: rgba(246,242,255,.86);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  box-shadow: var(--glow-blue);
}

.dot{
  width:10px; height:10px; border-radius: 99px;
  background: var(--lime);
  box-shadow: var(--glow-lime);
}

h1{
  margin: 14px 0 10px;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: 0.02em;
}

.neon-text{
  text-shadow:
    0 0 10px rgba(255,59,212,.30),
    0 0 24px rgba(255,59,212,.22),
    0 0 38px rgba(49,227,255,.14);
}

.sub{
  color: rgba(246,242,255,.78);
  font-size: 15.5px;
  line-height: 1.55;
  max-width: 62ch;
  margin: 0 0 16px;
}

.hero-actions{ display:flex; gap:10px; flex-wrap:wrap; align-items:center; }

.tag-row{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 16px; }
.tag{
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(246,242,255,.78);
}
.tag.pink{ border-color: rgba(255,59,212,.24); box-shadow: var(--glow-pink); }
.tag.blue{ border-color: rgba(49,227,255,.22); box-shadow: var(--glow-blue); }
.tag.violet{ border-color: rgba(155,92,255,.24); box-shadow: var(--glow-violet); }
.tag.gold{ border-color: rgba(255,211,92,.24); box-shadow: var(--glow-gold); }

/* right hero card */
.hero-side{ padding: 18px; display:flex; flex-direction:column; gap:12px; }

.tile{
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: rgba(0,0,0,.18);
  padding: 14px;
  position:relative;
  overflow:hidden;
  transition: all 0.3s ease;
  animation: float 6s ease-in-out infinite;
}

.tile:nth-child(1){ animation-delay: 0s; }
.tile:nth-child(2){ animation-delay: 1s; }
.tile:nth-child(3){ animation-delay: 2s; }

.tile:hover{
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0,0,0,.45), 0 0 25px rgba(255,59,212,.2);
  border-color: rgba(255,59,212,.3);
}

@keyframes float{
  0%, 100%{ transform: translateY(0px); }
  50%{ transform: translateY(-8px); }
}
.tile:before{
  content:"";
  position:absolute;
  inset:-10px;
  background: radial-gradient(280px 120px at 25% 10%, rgba(255,59,212,.16), transparent 70%);
  pointer-events:none;
}

.tile h3{ margin:0 0 6px; font-size: 13px; letter-spacing:.12em; text-transform:uppercase; color: rgba(246,242,255,.86); }
.tile p{ margin:0; color: rgba(246,242,255,.74); font-size: 13.5px; line-height:1.45; }

.meter{
  margin-top: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
  overflow:hidden;
  position: relative;
}

.meter:after{
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  animation: meter-shimmer 2.5s infinite;
}

@keyframes meter-shimmer{
  to{ left: 200%; }
}

.meter > span{
  display:block; height:100%; width: 74%;
  background: linear-gradient(90deg, rgba(255,59,212,.85), rgba(155,92,255,.85), rgba(49,227,255,.75));
  box-shadow: var(--glow-violet);
  background-size: 200% 100%;
  animation: meter-fill 1.5s ease-out, gradient-shift 3s ease infinite;
}

@keyframes meter-fill{
  from{ width: 0%; }
  to{ width: 74%; }
}

@keyframes gradient-shift{
  0%, 100%{ background-position: 0% 50%; }
  50%{ background-position: 100% 50%; }
}

/* sections */
section{ 
  padding: 18px 0;
  opacity: 0;
  animation: fade-in 0.8s ease forwards;
}

section:nth-child(1){ animation-delay: 0.1s; }
section:nth-child(2){ animation-delay: 0.2s; }
section:nth-child(3){ animation-delay: 0.3s; }
section:nth-child(4){ animation-delay: 0.4s; }
section:nth-child(5){ animation-delay: 0.5s; }
section:nth-child(6){ animation-delay: 0.6s; }
section:nth-child(7){ animation-delay: 0.7s; }

@keyframes fade-in{
  from{ opacity: 0; transform: translateY(30px); }
  to{ opacity: 1; transform: translateY(0); }
}

.grid3{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.grid2{ display:grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }

.card{ padding: 18px; }

.card h2{
  margin: 0 0 10px;
  font-size: 20px;
  letter-spacing:.08em;
  text-transform: uppercase;
  color: rgba(246,242,255,.88);
}

.card p{ margin:0; color: rgba(246,242,255,.76); line-height:1.55; font-size: 14.5px; }

.divider{
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.16), transparent);
  margin: 10px 0 14px;
}

.contact-intro {
  margin-bottom: 14px;
  color: rgba(246,242,255,.76);
  line-height: 1.55;
  font-size: 14.5px;
}

.list{ margin:0; padding:0; list-style:none; display:grid; gap:10px; }
.li{
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.14);
  border-radius: 16px;
  padding: 12px 12px;
  display:flex; align-items:flex-start; justify-content:space-between; gap: 10px;
  transition: all 0.3s ease;
  opacity: 0;
  animation: fade-in-up 0.6s ease forwards;
}

.li:nth-child(1){ animation-delay: 0.1s; }
.li:nth-child(2){ animation-delay: 0.2s; }
.li:nth-child(3){ animation-delay: 0.3s; }
.li:nth-child(4){ animation-delay: 0.4s; }

.li:hover{
  transform: translateX(8px);
  background: rgba(0,0,0,.25);
  border-color: rgba(49,227,255,.25);
  box-shadow: 0 8px 20px rgba(0,0,0,.35), 0 0 15px rgba(49,227,255,.15);
}

@keyframes fade-in-up{
  from{
    opacity: 0;
    transform: translateY(20px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}
.li b{ display:block; font-size: 13.5px; }
.li span{ display:block; color: rgba(246,242,255,.68); font-size: 12.5px; margin-top: 3px; }
.pill{
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(49,227,255,.22);
  background: rgba(49,227,255,.07);
  box-shadow: var(--glow-blue);
  white-space:nowrap;
}

.pill.pink {
  border-color: rgba(255,59,212,.22);
  background: rgba(255,59,212,.07);
  box-shadow: var(--glow-pink);
}

.pill.lime {
  border-color: rgba(183,255,74,.22);
  background: rgba(183,255,74,.07);
  box-shadow: var(--glow-lime);
  color: var(--lime);
}

/* --- DJ Spotlight Section --- */
.dj-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width: 860px) {
  .dj-spotlight { grid-template-columns: 1fr; }
}

.dj-card {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  overflow: hidden;
  position: relative;
}

.dj-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: radial-gradient(400px 200px at 20% 10%, rgba(255,107,53,.2), transparent 70%);
  pointer-events: none;
}

.dj-video-wrap {
  position: relative;
  aspect-ratio: 16/9;
  background: rgba(0,0,0,.4);
  overflow: hidden;
}

.dj-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dj-video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255,59,212,.1), rgba(155,92,255,.1));
  color: rgba(246,242,255,.5);
  font-size: 14px;
}

.dj-info {
  padding: 16px;
}

.dj-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .06em;
  margin: 0 0 4px;
  color: var(--gold);
  text-shadow: var(--glow-gold);
}

.dj-role {
  font-size: 12px;
  color: rgba(246,242,255,.6);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 8px;
}

.dj-bio {
  font-size: 13.5px;
  color: rgba(246,242,255,.75);
  line-height: 1.5;
}

/* --- Social Grid --- */
.social-grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  background: rgba(0,0,0,.18);
  font-size: 13px;
  transition: all .25s ease;
}

.social-link:hover {
  border-color: rgba(255,59,212,.3);
  box-shadow: var(--glow-pink);
  transform: translateY(-2px);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* --- Bear Cave Status Card --- */
.status-card {
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.status-card-content {
  position: relative;
  z-index: 1;
}

.big-status {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 900;
  letter-spacing: .08em;
  margin: 0;
}

@keyframes status-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .85; transform: scale(1.02); }
}

.status-subtitle {
  font-size: 14px;
  color: rgba(246,242,255,.7);
  margin: 8px 0 16px;
}

/* --- Video Embed --- */
.video-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
  aspect-ratio: 16/9;
  background: rgba(0,0,0,.3);
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- About Bio --- */
.bio-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: start;
}

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

.bio-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,59,212,.2), rgba(155,92,255,.2));
  border: 1px solid rgba(255,255,255,.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(246,242,255,.5);
  font-size: 13px;
  overflow: hidden;
}

.bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bio-content h3 {
  margin: 0 0 8px;
  font-size: 24px;
  color: var(--pink);
  text-shadow: var(--glow-pink);
}

.bio-content .location {
  font-size: 13px;
  color: rgba(246,242,255,.6);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.bio-content p {
  line-height: 1.65;
  color: rgba(246,242,255,.8);
}

.bio-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

