* { margin:0; padding:0; box-sizing:border-box; }

html, body {
  width:100%;
  height:100%;
  background:black;
  overflow:hidden;
  font-family: system-ui, sans-serif;
  color:white;
}

.background,
.smoke-layer {
  pointer-events: none;
}

/* BACKGROUND */
.background {
  position:absolute;
  inset:0;
  background:url("https://mocksurl.com/assets/uploads/mocks/41-quincy.world.jpeg?1267") center/cover no-repeat;
  background-position: center center;
  z-index:0;
}

/* OVERLAY (BLACK DIM) */
.overlay {
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.55);
  backdrop-filter:blur(6px);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:10;
}

.overlay.active { display:flex; }

/* PANEL */
.panel {
  background:rgba(15,15,15,.95);
  border-radius:26px;
  width:90%;
  max-width:520px;
  padding:28px;
  animation:panelIn .25s ease;
  position: relative;
}

@keyframes panelIn {
  from { opacity:0; transform:translateY(20px); }
  to { opacity:1; transform:translateY(0); }
}

#close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

#close:hover {
  background: rgba(255,255,255,0.2);
}

.panel h2 {
  margin-bottom: 20px;
  font-size: 24px;
}

.panel p {
  line-height: 1.6;
}

/* SOCIAL ICON GRID */
.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  text-decoration: none;
  color: white;
  font-size: 14px;
  transition: transform .25s ease, background .25s ease;
}

.social-btn:hover {
  transform: scale(1.03);
  background: rgba(255,255,255,0.12);
}

.social-btn svg {
  width: 20px;
  height: 20px;
  fill: white;
  flex-shrink: 0;
}

/* NAVIGATION CONTAINER - CIRCULAR LAYOUT */
.nav {
  position: fixed;
  z-index: 20;
  pointer-events: none;
}

/* Position navs to create circular layout around center */
.nav.left,
.nav.right {
  top: 50%;
  transform: translateY(-50%);
}

.nav.left {
  left: 8%;
}

.nav.right {
  right: 8%;
}

/* STAR BUTTONS - CIRCULAR POSITIONING */
.star {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  pointer-events: auto;
  position: absolute;
  left: 0;
}

/* LEFT SIDE BUTTONS - Positioned in circular arc */
.nav.left .star {
  flex-direction: row;
}

.nav.left .star:nth-child(1) {
  /* ABOUT - top left */
  top: -200px;
  left: 50px;
}

.nav.left .star:nth-child(2) {
  /* MUSIC - middle left */
  top: -50px;
  left: 0px;
}

.nav.left .star:nth-child(3) {
  /* VIDEOS - lower middle left */
  top: 100px;
  left: 20px;
}

.nav.left .star:nth-child(4) {
  /* SHOP - bottom left */
  top: 250px;
  left: 80px;
}

/* RIGHT SIDE BUTTONS - Positioned in circular arc */
.nav.right .star {
  flex-direction: row-reverse;
  right: 0;
  left: auto;
}

.nav.right .star:nth-child(1) {
  /* QUINCY.VIP - top right */
  top: -200px;
  right: 50px;
}

.nav.right .star:nth-child(2) {
  /* SIGN UP - middle right */
  top: -50px;
  right: 0px;
}

.nav.right .star:nth-child(3) {
  /* SOCIALS - lower middle right */
  top: 100px;
  right: 20px;
}

.nav.right .star:nth-child(4) {
  /* CONTACT - bottom right */
  top: 250px;
  right: 80px;
}

.star img {
  width: 70px;
  height: 70px;
  /* Removed the brightness/invert filters to show original icon colors */
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.3));
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
}

.star span {
  color: #ffffff;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.10em;
  -webkit-text-stroke: 1px #ffffff;
  text-shadow:
    
  transition: filter 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}

.star:hover img {
  transform: scale(1.15);
  opacity: 1;
  filter: drop-shadow(0 0 12px rgba(255,255,255,0.6));
}

.star:hover span {
  filter: brightness(1.4);
  transform: scale(1.05);
}

/* SMOKE LAYER */
.smoke-layer {
  position: fixed;
  top: 0;
  left: -30%;
  width: 160%;
  height: 100%;
  background: url("https://mocksurl.com/assets/uploads/mocks/85-light_smoke.png?260") center/cover no-repeat;
  opacity: 0.06;
  z-index: 2;
  pointer-events: none;
  animation: smokeDrift 10s linear infinite;
}

@keyframes smokeDrift {
  from { transform: translateX(0); }
  to   { transform: translateX(30%); }
}

/* QREW BRAND */
.qrew-brand {
  position: fixed;
  left: 50%;
  bottom: 4vh;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: auto;
  opacity: 0.85;
  transition: transform .3s ease, opacity .3s ease;
}

.qrew-brand:hover {
  opacity: 1;
  transform: translateX(-50%) scale(1.06);
}

.qrew-brand img {
  width: 120px;
  max-width: 30vw;
}
