:root {
  --bg: #212121;
  --bg-soft: #2a2a2a;
  --panel: #f8f8f6;
  --panel-2: #ffffff;
  --ink: #0a0a0a;
  --muted: #6d6d6d;
  --line: rgba(0, 0, 0, 0.09);
  --line-strong: rgba(0, 0, 0, 0.16);
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.18);
  --shadow-strong: 0 40px 120px rgba(0, 0, 0, 0.28);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--panel);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.04), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.05), transparent 24%),
    linear-gradient(180deg, #272727 0%, #1f1f1f 100%);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  background: rgba(18, 18, 18, 0.82);
  backdrop-filter: blur(20px);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__box {
  display: grid;
  gap: 16px;
  justify-items: center;
  letter-spacing: 0.24em;
  font-size: 0.78rem;
  font-weight: 800;
}

.page-loader__box i {
  width: 120px;
  height: 2px;
  display: block;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.page-loader__box i::before {
  content: "";
  display: block;
  width: 45%;
  height: 100%;
  background: #ffffff;
  animation: loaderSlide 1.15s ease-in-out infinite;
}

@keyframes loaderSlide {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(260%); }
}

.bg-orb,
.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.bg-orb {
  filter: blur(100px);
  opacity: 0.32;
}

.bg-orb--one {
  inset: auto auto 20% -8%;
  width: 260px;
  height: 260px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.bg-orb--two {
  inset: 10% -6% auto auto;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.bg-grid {
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black 38%, transparent 80%);
  opacity: 0.2;
}

.lang-switcher {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 20;
}

.lang-switcher__toggle {
  min-width: 68px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.lang-switcher__toggle:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

.lang-switcher__toggle svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.lang-switcher__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 76px;
  padding: 8px;
  display: grid;
  gap: 6px;
  border-radius: 18px;
  background: rgba(23, 23, 23, 0.95);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 24px 60px rgba(0,0,0,0.26);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.lang-switcher.is-open .lang-switcher__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-switcher__menu button {
  min-height: 38px;
  border-radius: 12px;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.2s ease, transform 0.2s ease;
}

.lang-switcher__menu button:hover,
.lang-switcher__menu button.is-active {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.bio-page {
  width: min(calc(100% - 36px), var(--max-width));
  margin: 0 auto;
  padding: 96px 0 56px;
}

.hero-stage {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
  margin-bottom: 36px;
}

.profile-card {
  position: relative;
  width: min(100%, 500px);
  background: linear-gradient(180deg, #fbfbfa 0%, #f6f6f4 100%);
  color: var(--ink);
  border-radius: 34px;
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  z-index: 3;
}

.profile-card__cover {
  position: relative;
  height: 186px;
  background: linear-gradient(135deg, rgba(0,0,0,0.08), rgba(255,255,255,0.35));
}

.profile-card__cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.04) 65%, rgba(255,255,255,0) 100%);
}

.profile-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-card__avatar-shell {
  width: 116px;
  height: 116px;
  margin: -58px auto 0;
  padding: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(240,240,240,0.95) 100%);
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  position: relative;
  z-index: 1;
}

.profile-card__avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(0,0,0,0.06);
}

.profile-card__body {
  padding: 18px 24px 28px;
  text-align: center;
}

.profile-card__eyebrow,
.content-card__eyebrow {
  margin: 0 0 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: #7a6d63;
}

.profile-card h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 2.8rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.profile-card__username {
  margin: 10px 0 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: #5f5f5f;
}

.profile-card__bio {
  margin: 16px auto 0;
  max-width: 360px;
  font-size: 1rem;
  line-height: 1.6;
  color: #666666;
}

.social-links {
  margin: 22px auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.social-links a {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: #111111;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  opacity: 0.8;
}

.social-links img,
.social-links svg {
  width: 22px;
  height: 22px;
  object-fit: contain;
  fill: currentColor;
}

.primary-links {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.primary-link {
  width: 100%;
  min-height: 70px;
  padding: 16px 18px;
  display: grid;
  gap: 6px;
  place-items: center;
  border-radius: 16px;
  text-align: center;
  color: var(--ink);
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(246,246,244,0.98) 100%);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.1);
  background: #ffffff;
}

.primary-link strong {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.primary-link small {
  font-size: 0.87rem;
  line-height: 1.45;
  color: var(--muted);
}

.float-card {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: rgba(255,255,255,0.92);
  z-index: 1;
}

.float-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.float-card--left {
  left: 0;
  top: 180px;
  width: 230px;
  height: 430px;
  transform: rotate(-0.6deg);
}

.float-card--top {
  right: 40px;
  top: 24px;
  width: 260px;
  height: 150px;
  transform: rotate(1deg);
}

.float-card--bottom {
  right: 0;
  bottom: 36px;
  width: 270px;
  padding: 12px 12px 14px;
  transform: rotate(-0.2deg);
}

.float-card__label {
  padding: 4px 2px 10px;
  color: #111111;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.float-card__media {
  position: relative;
  background: rgba(0,0,0,0.06);
}

.float-card__media--portrait {
  height: 100%;
}

.float-card__media--video {
  height: 100%;
}

.float-card__media--square {
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
}

.float-card__play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.84);
  color: #111111;
  backdrop-filter: blur(10px);
}

.float-card__play svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  margin-left: 2px;
}

.content-card {
  margin: 0 auto 28px;
  padding: 26px;
  max-width: 960px;
  border-radius: 30px;
  background: linear-gradient(180deg, #fbfbfa 0%, #f5f5f3 100%);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.content-card__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.content-card__heading h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.8vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.content-card__action,
.content-card__badge {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #555555;
  white-space: nowrap;
}

.video-frame {
  border-radius: 22px;
  overflow: hidden;
  background: #111111;
  aspect-ratio: 16 / 9;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.audio-player {
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.7);
  overflow: hidden;
}

.player-shell {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
}

.player-now {
  padding: 22px;
  border-right: 1px solid var(--line);
  display: grid;
  gap: 18px;
  align-content: start;
  background: linear-gradient(180deg, rgba(255,255,255,0.88) 0%, rgba(248,248,246,0.88) 100%);
}

.player-cover {
  position: relative;
  width: min(100%, 220px);
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(0,0,0,0.06);
  box-shadow: 0 14px 34px rgba(0,0,0,0.1);
}

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

.player-cover__fallback {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  font-size: 2.3rem;
  color: #3b3b3b;
}

.player-texts {
  display: grid;
  gap: 8px;
}

.player-kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #7a6d63;
}

.player-title {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.player-artist {
  margin: 0;
  color: #626262;
}

.player-error {
  min-height: 1.3em;
  margin: 0;
  color: #9a3b2d;
  font-size: 0.88rem;
}

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

.control-button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #111111;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.control-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.control-button--play {
  width: 58px;
  height: 58px;
}

.control-button svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.player-timeline {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.time {
  font-size: 0.82rem;
  color: #666666;
}

.player-volume {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: center;
  gap: 12px;
}

.player-volume svg {
  width: 18px;
  height: 18px;
  fill: #111111;
}

input[type="range"] {
  width: 100%;
  height: 4px;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 999px;
  background: linear-gradient(90deg, #111111 0%, #111111 var(--range-fill, 0%), rgba(0,0,0,0.1) var(--range-fill, 0%), rgba(0,0,0,0.1) 100%);
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #111111;
  box-shadow: 0 0 0 3px rgba(17,17,17,0.12);
}

input[type="range"]::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border: 0;
  border-radius: 50%;
  background: #111111;
  box-shadow: 0 0 0 3px rgba(17,17,17,0.12);
}

.player-library {
  padding: 22px;
  display: grid;
  gap: 16px;
}

.player-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.player-tab {
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(0,0,0,0.04);
  color: #4f4f4f;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.player-tab:hover,
.player-tab.is-active {
  background: #111111;
  color: #ffffff;
  transform: translateY(-1px);
}

.track-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.track-button {
  width: 100%;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  text-align: left;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.9);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.track-button:hover,
.track-button.is-active {
  transform: translateY(-1px);
  border-color: rgba(0,0,0,0.12);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.track-button.is-active {
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f3 100%);
}

.track-copy strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.35;
  color: #111111;
}

.track-copy span {
  display: block;
  margin-top: 4px;
  font-size: 0.84rem;
  color: #676767;
}

.track-status {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,0.05);
  color: #111111;
}

.track-status svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18,18,18,0.7);
  backdrop-filter: blur(18px);
}

.modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 920px);
  max-height: min(88vh, 920px);
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, #fbfbfa 0%, #f4f4f2 100%);
  color: var(--ink);
  box-shadow: var(--shadow-strong);
}

.modal__panel--compact {
  width: min(100%, 620px);
}

.modal__header {
  padding: 24px 24px 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.modal__header h2 {
  margin: 0;
  font-size: 1.7rem;
  letter-spacing: -0.04em;
}

.modal__close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #111111;
  background: rgba(0,0,0,0.05);
  font-size: 1.4rem;
  line-height: 1;
}

.modal__body {
  max-height: calc(88vh - 96px);
  overflow: auto;
  padding: 22px 24px 24px;
}

.app-list,
.streaming-list {
  display: grid;
  gap: 14px;
}

.app-card,
.streaming-link {
  border-radius: 18px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 12px 28px rgba(0,0,0,0.06);
}

.app-card {
  padding: 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: start;
}

.app-card__number {
  min-width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(0,0,0,0.05);
  font-size: 0.8rem;
  font-weight: 700;
  color: #4a4a4a;
}

.app-card h3 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.app-card p {
  margin: 8px 0 0;
  font-size: 0.92rem;
  line-height: 1.58;
  color: #666666;
}

.app-card__link,
.app-card__link--disabled {
  align-self: center;
  padding: 0 16px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.app-card__link {
  color: #ffffff;
  background: #111111;
}

.app-card__link--disabled {
  color: #4a4a4a;
  background: rgba(0,0,0,0.06);
}

.streaming-link {
  min-height: 66px;
  padding: 14px 18px;
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 14px;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.streaming-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.08);
}

.streaming-link img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.streaming-link strong {
  font-size: 0.95rem;
}

.streaming-link span {
  color: #555555;
  font-weight: 700;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 4px 2px 0;
  color: rgba(255,255,255,0.68);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(20px);
  transition: opacity 0.75s ease, transform 0.75s ease, filter 0.75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (max-width: 1120px) {
  .hero-stage {
    min-height: auto;
    padding-top: 16px;
  }

  .float-card--left,
  .float-card--top,
  .float-card--bottom {
    display: none;
  }
}

@media (max-width: 860px) {
  .bio-page {
    width: min(calc(100% - 22px), var(--max-width));
    padding-top: 86px;
  }

  .content-card {
    padding: 20px;
    border-radius: 24px;
  }

  .content-card__heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .player-shell {
    grid-template-columns: 1fr;
  }

  .player-now {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .player-cover {
    width: min(100%, 180px);
  }

  .app-card {
    grid-template-columns: 1fr;
  }

  .app-card__number {
    width: 38px;
  }

  .app-card__link,
  .app-card__link--disabled {
    width: 100%;
  }

  .site-footer {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .lang-switcher {
    top: 14px;
    right: 14px;
  }

  .bio-page {
    width: min(calc(100% - 16px), var(--max-width));
    padding-bottom: 28px;
  }

  .profile-card {
    border-radius: 28px;
  }

  .profile-card__cover {
    height: 156px;
  }

  .profile-card__avatar-shell {
    width: 100px;
    height: 100px;
    margin-top: -50px;
  }

  .profile-card__body {
    padding: 16px 16px 22px;
  }

  .profile-card__bio {
    font-size: 0.95rem;
  }

  .primary-link {
    min-height: 66px;
    padding: 14px 14px;
  }

  .primary-link strong {
    font-size: 1rem;
  }

  .primary-link small {
    font-size: 0.83rem;
  }

  .content-card {
    padding: 16px;
  }

  .modal {
    padding: 10px;
  }

  .modal__panel {
    border-radius: 22px;
  }

  .modal__header {
    padding: 18px 18px 14px;
  }

  .modal__body {
    padding: 16px 18px 18px;
  }

  .streaming-link {
    min-height: 60px;
  }
}
