@import url('https://fonts.googleapis.com/css2?family=Afacad+Flux:wght@100..1000&display=swap');

:root {
  --pink: #f951a2;
  --blue: #60afff;
  --green: #b9ef25;
  --dark: #111111;
  --darker: #0a0a0a;
  --white: #f5f5f0;
  --gray: #888;
  --font: 'Afacad Flux', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}

/* ─── CUSTOM CURSOR ─────────────────────────── */
.cursor {
  width: 12px;
  height: 12px;
  background: var(--pink);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transition: transform 0.1s ease, background 0.2s ease;
  mix-blend-mode: screen;
}

.cursor-follower {
  width: 36px;
  height: 36px;
  border: 2px solid var(--green);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99998;
  transition: transform 0.15s ease, left 0.12s ease, top 0.12s ease;
  mix-blend-mode: screen;
}

/* ─── NAVBAR ────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(249,81,162,0.15);
}

.nav-logo img {
  height: 44px;
  transition: filter 0.3s, drop-shadow 0.3s;
}
.nav-logo img:hover {
  filter: drop-shadow(0 0 14px var(--pink)) drop-shadow(0 0 32px var(--pink));
}

.nav-links {
  display: flex;
  gap: 10px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 20px;
  transition: color 0.2s, background 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transition: transform 0.25s;
  border-radius: 2px;
}

.nav-links a:hover {
  color: var(--pink);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-links a.active {
  color: var(--pink);
  background: rgba(249,81,162,0.1);
}

/* hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-burger.open span:nth-child(2) {
  opacity: 0;
}
.nav-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── MARQUEE ───────────────────────────────── */
.marquee-wrapper {
  overflow: hidden;
  background: var(--pink);
  padding: 8px 0;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marquee-scroll 18s linear infinite;
}

.marquee-track span {
  font-family: var(--font);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dark);
  padding: 0 28px;
}

.marquee-track .dot {
  color: var(--green);
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── MARQUEE BLUE ──────────────────────────── */
.marquee-blue .marquee-wrapper {
  background: var(--blue);
}

/* ─── SECTION HEADINGS ──────────────────────── */
.section-title {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.title-pink  { color: var(--pink); }
.title-blue  { color: var(--blue); }
.title-green { color: var(--green); }
.title-white { color: var(--white); }

/* ─── BUTTONS ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  padding: 10px 22px;
  border-radius: 30px;
  transition: all 0.22s;
}

.btn-pink {
  background: var(--pink);
  color: var(--dark);
}
.btn-pink:hover {
  background: #ff6dbf;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(249,81,162,0.5);
}

.btn-green {
  background: var(--green);
  color: var(--dark);
}
.btn-green:hover {
  background: #ccff1f;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(185,239,37,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--pink);
}
.btn-outline:hover {
  background: var(--pink);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-blue {
  background: var(--blue);
  color: var(--dark);
}
.btn-blue:hover {
  background: #7fc4ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(96,175,255,0.4);
}

/* ─── CAROUSELS ─────────────────────────────── */
.carousel-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  min-width: 100%;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.82));
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--white);
  border-radius: 0 0 12px 12px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  border: 2px solid var(--pink);
  color: var(--pink);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.2s;
}

.carousel-btn:hover {
  background: var(--pink);
  color: var(--dark);
}

.carousel-btn.prev { left: 8px; }
.carousel-btn.next { right: 8px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
}

.carousel-dots button.active {
  background: var(--pink);
}

/* ─── FOOTER ─────────────────────────────────── */
footer {
  background: var(--darker);
  border-top: 1px solid rgba(249,81,162,0.2);
  padding: 48px 40px 28px;
  margin-top: 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-logo img {
  height: 56px;
  transition: filter 0.3s;
}
.footer-logo img:hover {
  filter: drop-shadow(0 0 12px var(--pink));
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(249,81,162,0.4);
  color: var(--white);
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.2s;
  background: transparent;
}

.footer-socials a:hover {
  border-color: var(--pink);
  background: var(--pink);
  color: var(--dark);
  transform: translateY(-3px);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--gray);
  letter-spacing: 0.08em;
  text-align: center;
}

/* ─── NOISE TEXTURE OVERLAY ────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.028;
  pointer-events: none;
  z-index: 9000;
}

/* ─── UTILS ─────────────────────────────────── */
.page-wrapper {
  padding-top: 76px;
  min-height: 100vh;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 768px) {
  nav {
    padding: 12px 20px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.97);
    padding: 20px;
    gap: 4px;
    border-bottom: 1px solid rgba(249,81,162,0.2);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1rem;
    padding: 10px 16px;
  }

  .nav-burger {
    display: flex;
  }

  footer {
    padding: 36px 20px 20px;
  }
}

/* ─── NAV LEFT (logo + search) ──────────────── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ─── SEARCH BAR ─────────────────────────────── */
.nav-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-search {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(249,81,162,0.25);
  border-radius: 20px;
  padding: 6px 36px 6px 14px;
  font-size: 0.78rem;
  color: var(--white);
  font-family: inherit;
  width: 180px;
  transition: width 0.3s, border-color 0.2s;
  outline: none;
}

.nav-search::placeholder { color: rgba(245,245,240,0.35); }

.nav-search:focus {
  width: 240px;
  border-color: var(--pink);
}

.nav-search-btn {
  position: absolute;
  right: 10px;
  background: none;
  border: none;
  color: var(--pink);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
}

.search-results {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 320px;
  max-width: 420px;
  max-height: 420px;
  overflow-y: auto;
  background: rgba(14,14,14,0.98);
  border: 1px solid rgba(249,81,162,0.25);
  border-radius: 14px;
  z-index: 9999;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  scrollbar-width: thin;
}

.search-results.open { display: block; }

.search-count {
  padding: 8px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.search-result-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 14px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.15s;
}

.search-result-item:last-child { border-bottom: none; }

.search-result-item:hover {
  background: rgba(249,81,162,0.1);
}

.result-badge {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
}

.result-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}

.result-snippet {
  font-size: 0.75rem;
  color: rgba(245,245,240,0.5);
  line-height: 1.5;
  margin-top: 2px;
}

.result-snippet mark {
  background: rgba(249,81,162,0.3);
  color: var(--pink);
  border-radius: 2px;
  padding: 0 2px;
  font-style: normal;
}

.search-no-result {
  padding: 14px;
  font-size: 0.82rem;
  color: var(--gray);
  text-align: center;
}

/* ─── BACK TO TOP ────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--pink);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 4px 20px rgba(249,81,162,0.4);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--green);
  box-shadow: 0 4px 24px rgba(185,239,37,0.4);
}

/* ─── AUDIO BAR (index) ──────────────────────── */
.audio-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
}

.audio-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(249,81,162,0.3);
  border-radius: 24px;
  padding: 8px 18px;
  color: var(--white);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s;
}

.audio-btn:hover, .audio-btn.playing {
  background: rgba(249,81,162,0.12);
  border-color: var(--pink);
  color: var(--pink);
}

.audio-icon { font-size: 0.9rem; }

.audio-progress-wrap {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  max-width: 280px;
}

.audio-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--pink);
  border-radius: 2px;
  transition: width 0.5s linear;
}

/* ─── ALBUM PLAYER (areas) ───────────────────── */
.album-player {
  margin: 14px 0 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.album-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(249,81,162,0.12), rgba(96,175,255,0.08));
  border: 1px solid rgba(249,81,162,0.35);
  border-radius: 24px;
  padding: 10px 20px;
  color: var(--white);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  width: fit-content;
}

.album-play-btn:hover, .album-play-btn.playing {
  background: rgba(249,81,162,0.2);
  border-color: var(--pink);
  color: var(--pink);
}

.album-progress-wrap {
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
  max-width: 320px;
}

.album-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--pink), var(--blue));
  border-radius: 2px;
  transition: width 0.5s linear;
}

/* ─── RESPONSIVE SEARCH ──────────────────────── */
@media (max-width: 768px) {
  .nav-search-wrap { display: none; }
  .nav-left { gap: 0; }
}
