.glitter-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.sparkle {
  position: absolute;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,79,163,0.75));
  box-shadow: 0 0 10px rgba(255,255,255,0.35), 0 0 16px rgba(255,79,163,0.22);
  opacity: 0.75;
  animation: twinkle 2.8s ease-in-out infinite;
}

.sparkle::before,
.sparkle::after {
  content: "";
  position: absolute;
  background: inherit;
  inset: 0;
}

.sparkle::before { transform: rotate(25deg); }
.sparkle::after { transform: rotate(65deg); }

@keyframes twinkle {
  0%, 100% { transform: rotate(45deg) scale(0.75); opacity: 0.35; }
  50% { transform: rotate(45deg) scale(1.08); opacity: 0.95; }
}

:root {
  --bg: #09060d;
  --bg-2: #140b19;
  --panel: rgba(20, 12, 28, 0.88);
  --panel-2: rgba(35, 18, 42, 0.92);
  --border: #ff4fa355;
  --text: #fff3fb;
  --muted: #d5b8ca;
  --pink: #ff4fa3;
  --hotpink: #ff1493;
  --purple: #bb59ff;
  --cyan: #7df9ff;
  --black: #050308;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Verdana", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 79, 163, 0.18), transparent 22%),
    radial-gradient(circle at 85% 10%, rgba(125, 249, 255, 0.12), transparent 20%),
    radial-gradient(circle at 80% 80%, rgba(187, 89, 255, 0.16), transparent 24%),
    linear-gradient(180deg, #170c1d 0%, #09060d 100%);
  min-height: 100vh;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.25;
}

body::after {
  background: linear-gradient(to bottom, rgba(255,255,255,0.025), transparent 15%, transparent 85%, rgba(0,0,0,0.15));
  mix-blend-mode: screen;
  opacity: 0.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 1.5rem), var(--max-width));
  margin: 0 auto;
  padding: 1rem 0 2rem;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border: 2px solid var(--border);
  border-radius: 999px;
  background: rgba(10, 6, 14, 0.75);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  font-size: 0.95rem;
}

.topbar-status {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: 0.2s ease;
  box-shadow: 0 0 10px rgba(0,0,0,0.18);
}

.live-pill.offline {
  color: #b9a8b5;
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.10);
  text-shadow: none;
}

.live-pill.live {
  color: #ff8aa8;
  background: rgba(255, 77, 109, 0.12);
  border-color: rgba(255, 77, 109, 0.35);
  text-shadow: 0 0 8px rgba(255, 77, 109, 0.75);
  box-shadow: 0 0 16px rgba(255, 77, 109, 0.18);
  animation: liveBlink 1.2s ease-in-out infinite;
}

.live-pill:hover {
  transform: translateY(-1px);
}

@keyframes liveBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

.blink {
  color: var(--cyan);
  font-weight: 800;
  text-shadow: 0 0 8px rgba(125, 249, 255, 0.45);
  animation: blink 1.2s step-start infinite;
}

@keyframes blink {
  50% { opacity: 0.45; }
}

.layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1rem;
}

.sidebar,
.panel {
  background: linear-gradient(180deg, rgba(28, 13, 35, 0.96), rgba(15, 8, 20, 0.98));
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.sidebar {
  height: fit-content;
  position: sticky;
  top: 1rem;
}

.sidebar-header {
  padding: 1.25rem 1rem 1rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(255,20,147,0.26), rgba(187,89,255,0.2));
  border-bottom: 2px solid var(--border);
}

.avatar {
  width: 96px;
  height: 96px;
  margin: 0 auto 0.85rem;
  border-radius: 50%;
  border: 3px solid var(--pink);
  display: grid;
  place-items: center;
  font-size: 2.3rem;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.16), transparent 35%),
    linear-gradient(135deg, #ff1493, #8a2be2 70%, #111 100%);
  box-shadow: 0 0 24px rgba(255, 79, 163, 0.35);
}

.site-title {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.1;
  font-weight: 900;
  text-transform: lowercase;
}

.tagline {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.sidebar-section {
  padding: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.sidebar-section:last-child {
  border-bottom: 0;
}

.nav-list,
.social-list,
.mini-list {
  display: grid;
  gap: 0.65rem;
}

.nav-link,
.social-link,
.mini-item {
  display: block;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.035);
  color: var(--text);
  transition: 0.2s ease;
}

.nav-link:hover,
.social-link:hover,
.mini-item:hover,
.card:hover,
.faq-item:hover,
.feature-box:hover {
  transform: translateY(-2px);
  border-color: var(--pink);
  box-shadow: 0 0 0 1px rgba(255,79,163,0.12), 0 10px 24px rgba(0,0,0,0.22);
}

.main {
  display: grid;
  gap: 1rem;
}

.hero {
  padding: 1.5rem;
  background:
    radial-gradient(circle at top left, rgba(255,79,163,0.16), transparent 25%),
    radial-gradient(circle at bottom right, rgba(125,249,255,0.11), transparent 22%),
    linear-gradient(180deg, rgba(31,16,39,0.96), rgba(13,8,18,0.98));
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4.8vw, 4.3rem);
  line-height: 0.95;
  text-shadow: 0 2px 0 #000, 0 0 18px rgba(255, 79, 163, 0.22);
}

.hero .accent {
  color: var(--pink);
}

.hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.06rem;
  margin: 1rem 0 0;
}

.marquee {
  margin-top: 1.15rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  background: rgba(0,0,0,0.25);
  padding: 0.75rem 1rem;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

.marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 18s linear infinite;
  color: #ffd1ea;
  font-weight: 700;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  font-weight: 800;
  transition: 0.2s ease;
}

.button.primary {
  border-color: rgba(255,79,163,0.45);
  background: linear-gradient(180deg, rgba(255,79,163,0.32), rgba(255,20,147,0.16));
  box-shadow: 0 0 18px rgba(255,79,163,0.18);
}

.button:hover {
  transform: translateY(-2px) scale(1.01);
}

.grid-3,
.grid-2,
.links-grid,
.faq-grid,
.stats-grid {
  display: grid;
  gap: 1rem;
}

.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.links-grid { grid-template-columns: repeat(2, 1fr); }
.faq-grid { grid-template-columns: 1fr; }
.stats-grid { grid-template-columns: repeat(3, 1fr); }

.card,
.feature-box,
.faq-item {
  position: relative;
  padding: 1.3rem;
  background: linear-gradient(180deg, rgba(30,16,37,0.95), rgba(14,9,19,0.98));
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: 0.2s ease;
}

.feature-box h3,
.card h2,
.faq-item h3 {
  margin-top: 0;
}

.muted {
  color: var(--muted);
}

.stamp-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.stamp {
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: #ffd9ee;
  font-size: 0.82rem;
  font-weight: 700;
}

.scene-title {
  color: var(--pink);
  text-shadow: 0 0 10px rgba(255,79,163,0.22);
}

.profile-box {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
}

.status-box {
  background: linear-gradient(135deg, rgba(255,79,163,0.16), rgba(187,89,255,0.12));
}

.info-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.info-item {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035);
}

.info-item strong {
  display: block;
  margin-bottom: 0.2rem;
  color: #ffd5eb;
}

.social-link {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.social-tag {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan);
  font-weight: 800;
  white-space: nowrap;
}

.music-player {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.24);
}

.album {
  width: 74px;
  height: 74px;
  border-radius: 14px;
  border: 2px solid rgba(255,255,255,0.12);
  background:
    linear-gradient(135deg, rgba(255,20,147,0.9), rgba(187,89,255,0.8) 60%, rgba(0,0,0,0.8)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.08) 0 8px, rgba(0,0,0,0.08) 8px 16px);
  box-shadow: 0 0 18px rgba(255,79,163,0.18);
  flex-shrink: 0;
}

.song-meta small {
  display: block;
  color: #ffbddd;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.35rem;
  font-weight: 800;
}

.song-meta strong {
  display: block;
  font-size: 1.05rem;
}

.player-bar {
  margin-top: 0.6rem;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

.player-bar span {
  display: block;
  width: 62%;
  height: 100%;
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--cyan));
}

.sticker-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.95rem;
}

.sticker {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff5fb;
  background: linear-gradient(180deg, rgba(255,79,163,0.9), rgba(187,89,255,0.82));
  border: 2px solid rgba(255,255,255,0.18);
  box-shadow: 0 6px 14px rgba(0,0,0,0.26), 0 0 12px rgba(255,79,163,0.18);
  transform: rotate(-3deg);
}

.sticker.alt {
  background: linear-gradient(180deg, rgba(125,249,255,0.8), rgba(104,145,255,0.78));
  transform: rotate(2deg);
}

.sticker.dark {
  background: linear-gradient(180deg, rgba(49,29,60,0.95), rgba(12,8,18,0.96));
  color: #ffd4eb;
  border-color: rgba(255,79,163,0.32);
  transform: rotate(-2deg);
}

.widget-glitter {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: inherit;
}

.widget-glitter span {
  position: absolute;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,79,163,0.75));
  opacity: 0.55;
  box-shadow: 0 0 8px rgba(255,255,255,0.28);
  animation: twinkle 2.4s ease-in-out infinite;
}

.widget-glitter span:nth-child(1) { top: 14px; right: 18px; }
.widget-glitter span:nth-child(2) { top: 48px; right: 42px; width: 6px; height: 6px; animation-delay: .6s; }
.widget-glitter span:nth-child(3) { bottom: 18px; left: 22px; width: 7px; height: 7px; animation-delay: 1.1s; }

.footer {
  text-align: center;
  padding: 1.4rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.footer strong {
  color: var(--text);
}

@media (max-width: 1050px) {
  .topbar-status {
    width: 100%;
    justify-content: flex-start;
  }

  .layout,
  .profile-box,
  .grid-3,
  .grid-2,
  .links-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .page {
    width: min(calc(100% - 0.8rem), var(--max-width));
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 22px;
  }

  .hero,
  .card,
  .feature-box,
  .faq-item,
  .sidebar-section,
  .sidebar-header {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .button-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .music-player {
    flex-direction: column;
    align-items: flex-start;
  }
}

.pixel-decor {
  position: absolute;
  font-size: 14px;
  opacity: 0.9;
  text-shadow: 0 0 6px rgba(255,79,163,0.6);
  pointer-events: none;
}

.pixel-heart { color:#ff6ab7; }
.pixel-skull { color:#e6d6ff; }

.badge {
  display:inline-block;
  margin-top:0.6rem;
  padding:0.35rem 0.7rem;
  font-size:0.7rem;
  font-weight:900;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:#ffd6ee;
  border:1px solid rgba(255,255,255,0.18);
  border-radius:999px;
  background:linear-gradient(180deg, rgba(255,79,163,0.35), rgba(187,89,255,0.25));
  box-shadow:0 0 10px rgba(255,79,163,0.25);
}

.music-badge {
  display:flex;
  align-items:center;
  gap:0.6rem;
  margin-top:0.8rem;
  padding:0.65rem 0.8rem;
  border:1px solid rgba(255,255,255,0.14);
  border-radius:14px;
  background:rgba(0,0,0,0.35);
  color:#ffdff0;
  font-size:0.82rem;
  box-shadow:0 0 12px rgba(255,79,163,0.16);
}

.music-dot {
  width:10px;
  height:10px;
  border-radius:50%;
  background:#7df9ff;
  box-shadow:0 0 10px rgba(125,249,255,0.7);
  flex-shrink:0;
}

.aim-box {
  margin-top:0.85rem;
  border:1px solid rgba(255,255,255,0.14);
  border-radius:16px;
  background:linear-gradient(180deg, rgba(23,18,35,0.95), rgba(9,7,14,0.98));
  overflow:hidden;
  box-shadow:0 0 14px rgba(0,0,0,0.24);
}

.aim-header {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:0.5rem;
  padding:0.55rem 0.8rem;
  background:linear-gradient(180deg, rgba(125,249,255,0.18), rgba(104,145,255,0.12));
  color:#effbff;
  font-size:0.76rem;
  font-weight:900;
  letter-spacing:0.08em;
  text-transform:uppercase;
}

.aim-body {
  padding:0.8rem;
  font-size:0.84rem;
  color:#e9d7e4;
}

.aim-row + .aim-row {
  margin-top:0.55rem;
}

.aim-label {
  color:#ffbddd;
  font-size:0.72rem;
  text-transform:uppercase;
  letter-spacing:0.08em;
  font-weight:800;
  margin-bottom:0.2rem;
}

.aim-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  line-height: 1;
}

.aim-status-dot {
  width:10px;
  height:10px;
  border-radius:50%;
  flex-shrink:0;
  box-shadow:0 0 10px rgba(255,255,255,0.2);
}

.aim-status-dot.online {
  background: #79ff91;
  box-shadow: 0 0 10px rgba(121,255,145,0.8),
              0 0 18px rgba(121,255,145,0.4);
}

.aim-status-dot.busy {
  background: #ffe066;
  box-shadow: 0 0 10px rgba(255,224,102,0.8),
              0 0 18px rgba(255,224,102,0.35);
}

.aim-status-dot.dnd {
  background: #ff4f7a;
  box-shadow: 0 0 10px rgba(255,79,122,0.85),
              0 0 18px rgba(255,79,122,0.4);
}

.aim-status-dot.offline {
  background: #7a7a85;
  box-shadow: 0 0 6px rgba(0,0,0,0.6),
              0 0 10px rgba(255,255,255,0.08);
}

.aim-note {
  color:#cdb8c8;
  font-style:italic;
}

.visitor-box {
  margin-top:0.8rem;
  padding:0.7rem 0.8rem;
  border:1px solid rgba(255,255,255,0.12);
  border-radius:12px;
  background:rgba(0,0,0,0.35);
  font-size:0.85rem;
  display:flex;
  justify-content:space-between;
  align-items:center;
  letter-spacing:0.05em;
}

.counter-number {
  font-weight:900;
  color:#7df9ff;
  text-shadow:0 0 8px rgba(125,249,255,0.5);
}

.secret-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.secret-container {
  text-align: center;
  padding: 2rem;
  border-radius: 20px;
  border: 2px solid rgba(255,79,163,0.2);
  background: linear-gradient(180deg, rgba(30,16,37,0.9), rgba(14,9,19,0.95));
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.secret-container h1 {
  color: var(--pink);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 12px rgba(255,79,163,0.4);
}

.secret-container p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.back-button {
  display: inline-block;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: #ff9acb;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  transition: 0.2s ease;
}

.back-button:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 10px rgba(255,154,203,0.4);
}

.secret-subtext {
  font-size: 0.8rem;
  opacity: 0.6;
  margin-top: 0.5rem;
  letter-spacing: 0.08em;
}

.back-button {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: #ff9acb;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  transition: 0.2s ease;
}
.back-button:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.1);
}

.hidden-song {
  color: inherit;
  text-decoration: none;
  cursor: text;
  transition: 0.2s ease;
}

.hidden-song:hover {
  color: #ff4fa3;
  text-shadow: 0 0 6px rgba(255, 79, 163, 0.6);
}

.secret-blink {
  color: var(--cyan);
  font-weight: 800;
  text-shadow: 0 0 8px rgba(125, 249, 255, 0.45);
  animation: blink 1.2s step-start infinite;
  text-decoration: none;
  cursor: default;
}