:root {
  color-scheme: light;
  --bg: #061423;
  --bg2: #082d46;
  --ink: #fffaf0;
  --muted: #b9d9e7;
  --aqua: #43e6ff;
  --blue: #127cff;
  --gold: #ffd440;
  --orange: #ff7a00;
  --red: #ff3d44;
  --glass: rgba(255,255,255,.10);
  --line: rgba(255,255,255,.18);
  --shadow: 0 28px 90px rgba(0,0,0,.45);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(circle at 20% 5%, #0a74bd 0, #061423 34%, #040913 100%);
  color: var(--ink);
  overflow-x: hidden;
  min-height: 100vh;
}

/* Page-specific backgrounds */
body.page-home:before {
  content: ""; position: fixed; inset: 0;
  background: linear-gradient(120deg, transparent 0 46%, rgba(67,230,255,.12) 47% 49%, transparent 50%),
              radial-gradient(circle at 82% 18%, rgba(255,212,64,.22), transparent 27%);
  pointer-events: none;
}
body.page-404:before {
  content: ""; position: fixed; inset: 0;
  background: radial-gradient(circle at 82% 18%, rgba(255,212,64,.22), transparent 27%);
  pointer-events: none;
}

a { color: inherit; }
.wrap { width: min(1160px, 92vw); margin: auto; position: relative; }

/* Header & Nav */
header { padding: 26px 0 18px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.logo { font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.logo span { color: var(--aqua); }
nav { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
nav a { text-decoration: none; border: 1px solid var(--line); background: rgba(255,255,255,.06); padding: 10px 14px; border-radius: 999px; color: var(--muted); font-size: 14px; }
.lang-switch { display: flex; gap: 6px; margin-left: 4px; }
.lang-switch a { padding: 8px 11px; font-weight: 900; }
.lang-switch .active { background: linear-gradient(135deg, var(--aqua), var(--blue)); color: #00131f; border-color: transparent; }

/* Hero Section */
.hero { display: grid; grid-template-columns: 1.02fr .98fr; gap: 34px; align-items: center; padding: 22px 0 58px; }
.cover { border-radius: 30px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.25); transform: rotate(-1.2deg); background: #0b1b28; }
.cover img { width: 100%; height: auto; display: block; }
.eyebrow { display: inline-flex; gap: 10px; align-items: center; background: rgba(67,230,255,.12); border: 1px solid rgba(67,230,255,.35); padding: 9px 13px; border-radius: 999px; color: #dffaff; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; font-size: 13px; }
h1 { font-size: clamp(46px, 7.2vw, 94px); line-height: .9; margin: 22px 0 14px; letter-spacing: -.06em; }
h1 b { color: var(--aqua); text-shadow: 0 0 28px rgba(67,230,255,.35); }
.subtitle { font-size: clamp(20px, 2.4vw, 32px); color: #f7e9c4; line-height: 1.25; margin: 0 0 24px; }

/* Buttons & CTA */
.cta { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0; }
.btn { display: inline-block; text-decoration: none; padding: 15px 20px; border-radius: 16px; font-weight: 900; box-shadow: 0 14px 30px rgba(0,0,0,.25); border: 0; cursor: pointer; font: inherit; }
.primary { background: linear-gradient(135deg, var(--aqua), var(--blue)); color: #00131f; }
.secondary { background: rgba(255,255,255,.1); border: 1px solid var(--line); }

/* Layout Elements */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 20px; }
.card { background: var(--glass); border: 1px solid var(--line); border-radius: 22px; padding: 18px; backdrop-filter: blur(10px); }
.card strong { display: block; font-size: 24px; color: var(--gold); }
.card span { color: var(--muted); font-size: 14px; }
section { padding: 56px 0; }
.section-title { font-size: clamp(32px, 4vw, 58px); line-height: 1; margin: 0 0 18px; letter-spacing: -.04em; }
.lead { font-size: 20px; line-height: 1.65; color: #d9edf5; max-width: 860px; }
.panel { background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06)); border: 1px solid var(--line); border-radius: 32px; padding: 28px; box-shadow: var(--shadow); }

/* Doctrine & Rules */
.doctrine { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.rule { padding: 22px; border-radius: 24px; background: rgba(255,255,255,.08); border: 1px solid var(--line); }
.rule h3 { margin: 0 0 10px; font-size: 24px; color: var(--gold); }
.rule p { margin: 0; color: #d8edf5; line-height: 1.55; }
.release { display: grid; grid-template-columns: .9fr 1.1fr; gap: 26px; align-items: start; }
.badge { display: inline-flex; gap: 10px; align-items: center; background: rgba(255,212,64,.15); border: 1px solid rgba(255,212,64,.35); border-radius: 999px; padding: 8px 12px; color: #fff1a9; font-weight: 800; margin-bottom: 12px; font-size: 13px; text-transform: uppercase; letter-spacing: .05em; }

/* Streaming & Media */
.stream {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin-top: 18px;
}
.stream-card {
  text-decoration: none;
  text-align: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  color: #e8f8ff;
  font-weight: 900;
  font-size: 14px;
  line-height: 1.15;
  box-shadow: 0 12px 26px rgba(0,0,0,.18);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
  white-space: normal;
  overflow-wrap: anywhere;
}
.stream-card:hover {
  transform: translateY(-2px);
  border-color: rgba(67,230,255,.50);
  background: rgba(67,230,255,.12);
  box-shadow: 0 16px 34px rgba(0,0,0,.25);
}

/* Details & Lyrics */
details { margin-top: 18px; }
summary { cursor: pointer; font-weight: 900; color: var(--aqua); font-size: 18px; }
pre { white-space: pre-wrap; line-height: 1.55; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; background: rgba(0,0,0,.28); border: 1px solid var(--line); border-radius: 22px; padding: 20px; max-height: 600px; overflow: auto; color: #f2fbff; }
.bilingual { margin-top: 14px; background: rgba(0,0,0,.28); border: 1px solid var(--line); border-radius: 22px; padding: 20px; max-height: 720px; overflow: auto; }
.lyric-pair { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.10); }
.lyric-pair:last-child { border-bottom: 0; }
.original-line { color: #fff7d6; font-weight: 850; font-size: 17px; line-height: 1.45; }
.english-line { color: var(--aqua); font-size: 15px; line-height: 1.45; margin-top: 5px; }
.song-break { height: 14px; }

/* Quotes & Utilities */
.quote-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.quote-card { background: rgba(255,255,255,.08); border: 1px solid var(--line); border-radius: 24px; padding: 22px; font-size: clamp(22px, 2.5vw, 34px); line-height: 1.08; font-weight: 950; letter-spacing: -.04em; }
.quote-card span { color: var(--aqua); }
.disclaimer { border-style: dashed; background: linear-gradient(135deg, rgba(255,61,68,.08), rgba(67,230,255,.08)); }
.punchline { margin: 22px 0 0; background: linear-gradient(135deg, rgba(255,212,64,.16), rgba(67,230,255,.12)); border: 1px solid rgba(255,212,64,.34); border-radius: 24px; padding: 20px 22px; font-size: clamp(19px, 2.2vw, 28px); line-height: 1.35; font-weight: 900; color: #fff7d6; }
.punchline span { color: var(--aqua); }
.status { margin-top: 18px; padding: 15px 17px; border-radius: 18px; background: rgba(67,230,255,.10); border: 1px solid rgba(67,230,255,.28); color: #ddfbff; font-weight: 800; }
.micro { font-size: 15px; color: var(--muted); line-height: 1.55; margin-top: 14px; }
.pressline { font-size: 20px; line-height: 1.6; color: #d9edf5; }
.pressline b { color: var(--gold); }
.share-row { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 22px; }
.share-row-top { margin: 4px 0 22px; justify-content: flex-start; }
.share-row-top .btn { font-size: 18px; padding: 18px 24px; }
.share-status { color: var(--muted); font-weight: 800; }

.artist-panel { padding: 16px; }
.artist-portrait { margin: 0; }
.artist-portrait img { width: 100%; display: block; border-radius: 24px; border: 1px solid rgba(255,255,255,.22); box-shadow: 0 22px 60px rgba(0,0,0,.34); }
.artist-portrait figcaption { margin-top: 14px; color: #fff7d6; font-weight: 900; font-size: clamp(18px, 2vw, 26px); line-height: 1.18; letter-spacing: -.02em; }

footer { padding: 42px 0 60px; color: var(--muted); text-align: center; }

/* 404 Specific */
.not-found { min-height: 100vh; display: grid; place-items: center; text-align: center; padding: 42px 0; }
.not-found.wrap { width: min(900px, 92vw); }
.not-found h1 { font-size: clamp(42px, 8vw, 92px); margin: 20px 0 30px; }
.not-found p { font-size: clamp(17px, 2vw, 22px); margin: 0 auto 18px; }
.page-404 .lead { font-size: clamp(17px, 2vw, 22px); line-height: 1.5; }
.page-404 .panel { padding: 22px; }

/* Responsive Media Queries */
@media(max-width: 850px) {
  .hero, .release, .doctrine { grid-template-columns: 1fr; }
  .cards, .quote-grid { grid-template-columns: 1fr; }
  header { align-items: flex-start; flex-direction: column; }
  .cover { transform: none; }
  nav a { padding: 9px 11px; font-size: 13px; }
  section { padding: 38px 0; }
  .lead { font-size: 18px; }
  .panel { padding: 22px; }
  .bilingual, pre { max-height: 520px; }
  .cta .btn { width: 100%; text-align: center; }
}
@media(max-width: 520px) {
  .share-row-top .btn { width: 100%; text-align: center; }
  .wrap { width: min(100% - 28px, 1160px); }
  .cards { gap: 10px; }
  h1 { font-size: 46px; }
  .subtitle { font-size: 20px; }
  .logo { font-size: 14px; }
  nav { gap: 8px; }
  .punchline { font-size: 19px; }
  .card strong { font-size: 36px; }
}


/* Wallpaper gallery */
.wallpaper-hero { grid-template-columns: 1fr; }
.wallpaper-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 220px)); justify-content: center; gap: 16px; margin-top: 24px; }
.wallpaper-card { overflow: hidden; border-radius: 24px; border: 1px solid var(--line); background: rgba(255,255,255,.08); box-shadow: 0 18px 46px rgba(0,0,0,.26); }
.wallpaper-card img { width: 100%; height: auto; display: block; background: rgba(0,0,0,.24); }
.wallpaper-card-body { padding: 13px; }
.wallpaper-card h3 { margin: 5px 0 7px; color: #fff7d6; font-size: 18px; line-height: 1.08; letter-spacing: -.03em; }
.wallpaper-card p { color: #d8edf5; line-height: 1.42; margin: 0 0 9px; font-size: 14px; }
.wallpaper-number { display: inline-block; color: var(--aqua); font-weight: 950; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.wallpaper-tag { color: var(--gold) !important; font-weight: 950; font-size: 14px !important; }
.wallpaper-card .micro { font-size: 12px; }
.wallpaper-card .btn { width: 100%; text-align: center; padding: 10px 10px; margin-top: 3px; font-size: 13px; border-radius: 14px; }
@media(max-width: 520px) {
  .wallpaper-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
  .wallpaper-card { border-radius: 14px; }
  .wallpaper-card-body { padding: 8px; }
  .wallpaper-card h3 { font-size: 12px; }
  .wallpaper-card p { display: none; }
  .wallpaper-number { font-size: 9px; }
  .wallpaper-card .btn { display: none; }
}

/* Share tools */
.doctrine-buttons { display: flex; align-items: center; justify-content: flex-start; gap: 10px; flex-wrap: wrap; margin: 0 0 6px; color: var(--muted); font-weight: 800; }
.doctrine-buttons button, .doctrine-small, .copy-line { text-decoration: none; border: 1px solid var(--line); background: rgba(255,255,255,.08); color: #e8f8ff; border-radius: 999px; padding: 9px 12px; font-weight: 900; font-size: 13px; cursor: pointer; font-family: inherit; }
.doctrine-buttons button:hover, .doctrine-small:hover, .copy-line:hover { background: rgba(67,230,255,.14); border-color: rgba(67,230,255,.35); }
.quote-card { display: flex; flex-direction: column; justify-content: space-between; gap: 18px; }
.quote-text { display: block; }
.copy-line { align-self: flex-start; box-shadow: none; color: var(--aqua); }

/* Share tools */
.doctrine-panel { margin: 0 0 24px; padding: 16px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.06); }
.doctrine-panel-title { color: #fff7d6; font-weight: 950; margin-bottom: 11px; letter-spacing: .02em; }

/* Press kit layout */
.fact-grid, .asset-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.asset-card {
  display: block;
  text-decoration: none;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--line);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.asset-card:hover {
  transform: translateY(-2px);
  border-color: rgba(67,230,255,.50);
  background: rgba(67,230,255,.12);
}
.asset-card strong {
  display: block;
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 6px;
}
.asset-card span {
  color: var(--muted);
  line-height: 1.4;
}
.press-contact {
  font-size: clamp(24px, 4vw, 46px);
  font-weight: 950;
  line-height: 1.05;
  letter-spacing: -.04em;
  margin: 10px 0;
}
.press-contact span { color: var(--gold); }
.press-contact a { color: var(--aqua); text-decoration-thickness: 2px; text-underline-offset: 6px; }
.quote-list blockquote {
  margin: 0 0 18px;
  padding: 18px 20px;
  border-left: 4px solid var(--aqua);
  background: rgba(255,255,255,.07);
  border-radius: 18px;
  color: #fff7d6;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 850;
}
nav a.active { background: rgba(67,230,255,.14); border-color: rgba(67,230,255,.38); color: #e8fbff; }


/* Wallpapers page */
.page-wallpapers .wallpaper-hero { grid-template-columns: 1fr; max-width: 980px; }
.wallpaper-phone-panel { display: none; }
.wallpaper-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 190px));
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}
.wallpaper-card {
  min-width: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.08);
  box-shadow: 0 16px 42px rgba(0,0,0,.24);
}
.wallpaper-card img {
  width: 100%;
  height: auto;
  display: block;
  background: rgba(0,0,0,.24);
}
.wallpaper-card-body { padding: 11px; }
.wallpaper-card h3 {
  margin: 5px 0 7px;
  color: #fff7d6;
  font-size: 16px;
  line-height: 1.08;
  letter-spacing: -.03em;
  overflow-wrap: anywhere;
}
.wallpaper-card p {
  color: #d8edf5;
  line-height: 1.4;
  margin: 0 0 8px;
  font-size: 13px;
}
.wallpaper-number {
  display: inline-block;
  color: var(--aqua);
  font-weight: 950;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.wallpaper-tag { color: var(--gold) !important; font-weight: 950; font-size: 13px !important; }
.wallpaper-card .micro { font-size: 11px; }
.wallpaper-card .btn {
  width: 100%;
  text-align: center;
  padding: 9px 8px;
  margin-top: 3px;
  font-size: 12px;
  border-radius: 13px;
  white-space: normal;
  overflow-wrap: anywhere;
}
@media(max-width: 850px) {
  .page-wallpapers .wallpaper-hero { grid-template-columns: 1fr; }
}
@media(max-width: 520px) {
  .wallpaper-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    align-items: start;
  }
  .wallpaper-card { border-radius: 14px; }
  .wallpaper-card-body { padding: 7px; }
  .wallpaper-card h3 { font-size: 11px; line-height: 1.08; margin: 3px 0 0; }
  .wallpaper-number { font-size: 8px; letter-spacing: .05em; }
  .wallpaper-card p,
  .wallpaper-card .micro,
  .wallpaper-card .btn { display: none; }
}
@media(max-width: 360px) {
  .wallpaper-grid { gap: 6px; }
  .wallpaper-card h3 { font-size: 10px; }
}
