/* =====================================================
   MYHVN — Unified dark visual system
   ===================================================== */

:root {
  color-scheme: dark;
  --primary: #5b72ff;
  --primary-bright: #7b5cff;
  --primary-hover: #8192ff;
  --accent: #27d7ff;
  --danger: #ff4d67;
  --dark: #060712;
  --dark-2: #0d1020;
  --surface: rgba(20, 23, 39, .82);
  --surface-solid: #151827;
  --surface-hover: #1b2033;
  --text: #f7f8ff;
  --text-muted: #a7aec3;
  --border: rgba(255, 255, 255, .1);
  --border-bright: rgba(118, 139, 255, .35);
  --card-shadow: 0 18px 60px rgba(0, 0, 0, .28);
  --card-shadow-hover: 0 28px 80px rgba(0, 0, 0, .42);
  --radius: 24px;
  --radius-sm: 16px;
  --gradient: linear-gradient(135deg, #426dff 0%, #7558ed 100%);
  --gradient-soft: linear-gradient(135deg, rgba(66, 109, 255, .16), rgba(117, 88, 237, .12));
}

/* ----- GLOBAL ----- */
html {
  scroll-behavior: smooth;
  background: var(--dark);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.65;
  background:
    radial-gradient(circle at 10% 0%, rgba(58, 89, 255, .13), transparent 28rem),
    radial-gradient(circle at 94% 36%, rgba(113, 75, 238, .1), transparent 34rem),
    var(--dark);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  color: #fff;
  background: rgba(91, 114, 255, .72);
}

a {
  color: #8fa0ff;
  text-underline-offset: .2em;
}

a:hover { color: #bdc7ff; }

.container { max-width: 1180px; }
.text-muted { color: var(--text-muted) !important; }
.lead { color: #c5cada !important; }

/* ----- ACCESSIBILITY ----- */
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 3px solid rgba(39, 215, 255, .7);
  outline-offset: 3px;
  box-shadow: none;
}

/* ----- BUTTONS ----- */
.btn {
  border-radius: 999px;
  padding: .66rem 1.15rem;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: -.01em;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  color: #fff;
  background: var(--gradient);
  border-color: transparent;
  box-shadow: 0 10px 28px rgba(70, 91, 255, .24);
}

.btn-primary:hover,
.btn-primary:focus {
  color: #fff;
  background: linear-gradient(135deg, #557dff, #8667f4);
  border-color: transparent;
  box-shadow: 0 14px 34px rgba(70, 91, 255, .36);
}

.btn-outline-primary {
  color: #b8c1ff;
  border-color: rgba(123, 143, 255, .42);
  background: rgba(82, 101, 196, .08);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  color: #fff;
  border-color: rgba(137, 154, 255, .76);
  background: rgba(91, 114, 255, .18);
}

/* ----- NAVBAR ----- */
.site-navbar {
  z-index: 1040;
  padding-top: .8rem;
  padding-bottom: .8rem;
  background: rgba(6, 7, 18, .74) !important;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  box-shadow: 0 12px 42px rgba(0, 0, 0, .22);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
}

.navbar-logo {
  width: auto;
  height: 34px;
  max-width: 155px;
  filter: drop-shadow(0 6px 18px rgba(64, 93, 255, .22));
}

.site-navbar .nav-link {
  color: rgba(231, 234, 249, .68) !important;
  padding: .55rem .92rem !important;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 650;
  transition: color .18s ease, background .18s ease, border-color .18s ease;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link:focus,
.site-navbar .nav-link.active {
  color: #fff !important;
  border-color: rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .065);
}

.navbar-toggler {
  width: 44px;
  height: 44px;
  padding: .5rem;
  border-radius: 13px;
  background: rgba(255, 255, 255, .07);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.navbar-toggler:focus { box-shadow: inset 0 0 0 1px rgba(122, 143, 255, .65); }
.navbar-toggler-icon { filter: invert(1) brightness(1.5); }

.site-navbar .dropdown-menu {
  min-width: 240px;
  padding: .5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  background: rgba(17, 20, 34, .96);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .45);
  backdrop-filter: blur(24px);
}

.site-navbar .dropdown-item {
  padding: .65rem .78rem;
  border-radius: 12px;
  color: rgba(235, 237, 248, .76);
  font-size: .84rem;
  transition: color .15s ease, background .15s ease;
}

.site-navbar .dropdown-item:hover,
.site-navbar .dropdown-item:focus {
  color: #fff;
  background: linear-gradient(90deg, rgba(80, 108, 255, .22), rgba(119, 84, 237, .12));
}

/* ----- HOME HERO ----- */
.hero-section {
  position: relative;
  isolation: isolate;
  min-height: 590px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 7rem 0 8rem;
  color: #fff;
  background:
    radial-gradient(circle at 50% 18%, rgba(85, 108, 255, .32), transparent 31rem),
    radial-gradient(circle at 12% 90%, rgba(32, 197, 255, .1), transparent 30rem),
    radial-gradient(circle at 92% 78%, rgba(124, 79, 241, .15), transparent 30rem),
    linear-gradient(160deg, #080a18 0%, #0b1023 52%, #0c091d 100%);
}

.hero-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .24;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 680px;
  height: 680px;
  top: -450px;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid rgba(119, 145, 255, .32);
  border-radius: 50%;
  box-shadow:
    0 0 0 84px rgba(77, 102, 255, .035),
    0 0 0 168px rgba(77, 102, 255, .025),
    0 0 120px rgba(56, 91, 255, .3);
}

.hero-logo {
  width: 112px;
  height: 112px;
  padding: 17px;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 29px;
  background: rgba(255, 255, 255, .055);
  box-shadow: 0 24px 80px rgba(15, 35, 143, .32), inset 0 1px rgba(255, 255, 255, .12);
  backdrop-filter: blur(20px);
}

.hero-title {
  max-width: 820px;
  margin: .45rem auto .55rem;
  font-size: clamp(2.6rem, 7vw, 5.35rem);
  font-weight: 850;
  line-height: .98;
  letter-spacing: -.065em;
  text-wrap: balance;
  background: linear-gradient(180deg, #fff 12%, #bac5ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  max-width: 650px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(215, 220, 241, .68);
  font-size: clamp(1rem, 2.1vw, 1.25rem);
  letter-spacing: -.02em;
}

.hero-section .btn {
  padding: .88rem 1.45rem;
  font-size: .93rem;
}

/* ----- SHARED SECTIONS ----- */
.games-section,
.about-section,
.contact-section {
  position: relative;
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

.games-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .015), transparent 18rem),
    #090b16;
  border-top: 1px solid rgba(255, 255, 255, .055);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-bottom: .65rem;
  padding: .34rem .65rem;
  border: 1px solid rgba(100, 125, 255, .2);
  border-radius: 999px;
  color: #8ca0ff;
  background: rgba(74, 96, 209, .09);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #657eff;
  box-shadow: 0 0 12px #657eff;
}

.section-title {
  margin-bottom: .65rem;
  color: var(--text);
  font-size: clamp(2rem, 4.5vw, 3.35rem);
  font-weight: 820;
  letter-spacing: -.05em;
  line-height: 1.04;
}

.section-lead {
  max-width: 670px;
  margin-right: auto;
  margin-left: auto;
  color: var(--text-muted);
  font-size: 1rem;
}

/* ----- APP CARDS ----- */
.game-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  background: linear-gradient(155deg, rgba(27, 31, 51, .96), rgba(13, 15, 27, .98));
  box-shadow: var(--card-shadow);
  transition: transform .28s cubic-bezier(.2, .75, .25, 1), border-color .25s ease, box-shadow .28s ease;
}

.game-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 1px rgba(255, 255, 255, .045);
}

.game-card:hover {
  z-index: 2;
  transform: translateY(-8px);
  border-color: rgba(112, 134, 255, .3);
  box-shadow: var(--card-shadow-hover);
}

.game-card .card-img-wrapper {
  position: relative;
  height: 275px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 10%, rgba(83, 108, 255, .18), transparent 48%),
    #0c0f1c;
  border-bottom: 1px solid rgba(255, 255, 255, .065);
}

.game-card .card-img-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(255, 255, 255, .035), transparent 46%);
  pointer-events: none;
}

.game-card .card-img-wrapper img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 16px;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, .3));
}

.game-card .card-body { padding: 1.4rem 1.4rem .8rem; }

.game-card .card-title {
  margin-bottom: .55rem;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 760;
  letter-spacing: -.025em;
}

.game-card .card-text {
  margin-bottom: .45rem;
  color: var(--text-muted);
  font-size: .86rem;
  line-height: 1.62;
}

.game-card .card-actions {
  display: grid;
  gap: .55rem;
  padding: .8rem 1.4rem 1.4rem;
}

.game-card.app-featured {
  border-color: rgba(91, 114, 255, .45);
  background: linear-gradient(155deg, rgba(33, 39, 72, .98), rgba(14, 16, 31, .99));
  box-shadow: 0 24px 70px rgba(35, 53, 174, .23);
}

.app-icon-stage {
  background:
    radial-gradient(circle at 20% 12%, rgba(43, 212, 255, .3), transparent 35%),
    radial-gradient(circle at 84% 82%, rgba(117, 76, 238, .42), transparent 42%),
    linear-gradient(145deg, #070a16, #141b37) !important;
}

.game-card .card-img-wrapper .app-store-icon {
  width: 156px;
  height: 156px;
  border-radius: 35px;
  box-shadow: 0 24px 56px rgba(0, 0, 0, .5), 0 0 0 1px rgba(255, 255, 255, .13);
}

.app-badge {
  display: inline-flex;
  padding: .28rem .56rem;
  border: 1px solid rgba(107, 131, 255, .2);
  border-radius: 999px;
  color: #9aabff;
  background: rgba(74, 100, 231, .12);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
}

/* ----- ABOUT ----- */
.about-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 50%, rgba(73, 104, 255, .12), transparent 28rem),
    #070914;
  border-top: 1px solid rgba(255, 255, 255, .05);
}

.about-logo {
  width: 176px;
  max-width: 100%;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 38px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025));
  box-shadow: 0 24px 70px rgba(0, 0, 0, .35), inset 0 1px rgba(255, 255, 255, .08);
}

.about-section p { max-width: 700px; }

/* ----- CONTACT ----- */
.contact-section {
  background:
    radial-gradient(circle at 82% 25%, rgba(118, 78, 238, .12), transparent 25rem),
    #0a0c18;
  border-top: 1px solid rgba(255, 255, 255, .05);
}

.contact-block {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--border);
  border-radius: 19px;
  color: var(--text);
  background: rgba(25, 28, 45, .72);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .18);
  text-decoration: none;
  font-weight: 650;
  transition: transform .22s ease, border-color .2s ease, background .2s ease;
}

.contact-block:hover {
  transform: translateY(-4px);
  border-color: rgba(107, 131, 255, .38);
  color: #fff;
  background: rgba(31, 35, 56, .88);
}

.contact-block .contact-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid rgba(112, 137, 255, .2);
  border-radius: 14px;
  color: #a7b4ff;
  background: linear-gradient(145deg, rgba(82, 107, 244, .22), rgba(115, 77, 229, .12));
  font-size: 1.15rem;
}

/* ----- FOOTER ----- */
.site-footer {
  color: rgba(215, 219, 236, .48);
  background: #05060d;
  border-top: 1px solid rgba(255, 255, 255, .065);
  font-size: .82rem;
}

.footer-logo {
  width: auto;
  height: 27px;
  filter: brightness(0) invert(1);
  opacity: .6;
}

.footer-link {
  color: rgba(220, 224, 240, .5);
  text-decoration: none;
  transition: color .18s ease;
}

.footer-link:hover { color: #fff; }

/* ----- INNER PAGE HERO ----- */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 4.8rem 0 5rem;
  color: #fff;
  background:
    radial-gradient(circle at 84% 10%, rgba(109, 75, 238, .23), transparent 27rem),
    radial-gradient(circle at 8% 100%, rgba(45, 174, 255, .11), transparent 25rem),
    linear-gradient(150deg, #0b1022, #0a0917);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.page-hero::after {
  content: "";
  position: absolute;
  top: -190px;
  right: -90px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(119, 139, 255, .24);
  border-radius: 50%;
  box-shadow: 0 0 0 58px rgba(86, 106, 255, .035), 0 0 0 116px rgba(86, 106, 255, .02);
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  margin-bottom: .35rem;
  color: #fff;
  font-size: clamp(2.35rem, 5vw, 4rem);
  font-weight: 840;
  line-height: 1;
  letter-spacing: -.055em;
}

.page-hero p {
  margin-bottom: 0;
  color: rgba(215, 220, 240, .62);
  font-size: 1rem;
}

.page-hero .breadcrumb { margin-bottom: 1.2rem; }
.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item.active { color: rgba(229, 232, 246, .72); }

.page-hero .breadcrumb-item a {
  color: #94a5ff;
  text-decoration: none;
}

.page-hero .breadcrumb-item a:hover { color: #fff; }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255, 255, 255, .26); }

/* ----- SUPPORT & PRIVACY ----- */
.support-body,
.privacy-body {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  background:
    radial-gradient(circle at 0% 20%, rgba(60, 92, 255, .095), transparent 32rem),
    radial-gradient(circle at 100% 75%, rgba(112, 75, 238, .07), transparent 34rem),
    #080a14;
}

.support-body main,
.privacy-body main {
  width: 100%;
  padding-top: 4.5rem !important;
  padding-bottom: 5rem !important;
}

.support-card,
.privacy-doc {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, .035), transparent 32%),
    rgba(18, 21, 35, .88);
  box-shadow: var(--card-shadow), inset 0 1px rgba(255, 255, 255, .035);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.support-card { padding: 2.15rem; }
.support-card h2 { color: #fff; letter-spacing: -.025em; }
.support-card h3 { margin-top: 1.45rem; color: #e9ecff; }
.support-card p:last-child { margin-bottom: 0; }

.support-contact-link {
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: .95rem;
  padding: .9rem 1rem;
  margin-bottom: .7rem;
  border: 1px solid rgba(255, 255, 255, .085);
  border-radius: var(--radius-sm);
  color: #ebedfa;
  background: rgba(255, 255, 255, .035);
  text-decoration: none;
  font-size: .94rem;
  font-weight: 620;
  transition: transform .2s ease, color .2s ease, border-color .2s ease, background .2s ease;
}

.support-contact-link:last-child { margin-bottom: 0; }

a.support-contact-link:hover {
  transform: translateX(4px);
  color: #fff;
  border-color: rgba(106, 130, 255, .34);
  background: rgba(91, 114, 255, .085);
}

.support-contact-link .icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid rgba(112, 136, 255, .2);
  border-radius: 13px;
  color: #9eaeff;
  background: linear-gradient(145deg, rgba(81, 106, 242, .22), rgba(114, 77, 227, .1));
  font-size: 1.05rem;
}

.privacy-doc { padding: clamp(1.5rem, 4vw, 3.2rem); }

.privacy-doc .meta {
  margin-bottom: 2rem;
  padding: .85rem 1rem;
  border: 1px solid rgba(107, 130, 255, .16);
  border-radius: 14px;
  color: var(--text-muted);
  background: rgba(77, 99, 217, .07);
  font-size: .82rem;
}

.privacy-doc h2 {
  margin-top: 2.65rem;
  margin-bottom: .85rem;
  padding-bottom: .72rem;
  border-bottom: 1px solid rgba(255, 255, 255, .075);
  color: #a9b6ff;
  font-size: 1.2rem;
  font-weight: 760;
  letter-spacing: -.02em;
}

.privacy-doc h2:first-of-type { margin-top: 0; }

.privacy-doc h3 {
  margin-top: 1.4rem;
  margin-bottom: .48rem;
  color: #ecedfa;
  font-size: .98rem;
  font-weight: 700;
}

.privacy-doc p,
.privacy-doc li {
  color: #b4bacd;
  font-size: .925rem;
  line-height: 1.78;
}

.privacy-doc ul { padding-left: 1.35rem; }
.privacy-doc li { margin-bottom: .42rem; padding-left: .2rem; }
.privacy-doc li::marker { color: #7288ff; }

.privacy-doc .contact-info {
  margin-top: 1.2rem;
  padding: 1.2rem 1.3rem;
  border: 1px solid rgba(104, 128, 255, .18);
  border-radius: var(--radius-sm);
  background: var(--gradient-soft);
}

.privacy-doc .contact-info a {
  color: #aab7ff;
  font-weight: 650;
  text-decoration: none;
}

.privacy-doc .contact-info a:hover { color: #fff; text-decoration: underline; }

/* ----- RESPONSIVE ----- */
@media (max-width: 991.98px) {
  .site-navbar .navbar-collapse {
    margin-top: .75rem;
    padding: .7rem;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    background: rgba(15, 18, 31, .95);
  }

  .site-navbar .nav-link { border-radius: 12px; }
  .site-navbar .dropdown-menu { margin-top: .4rem; box-shadow: none; }
}

@media (max-width: 767.98px) {
  .hero-section { min-height: 540px; padding: 5.3rem 0 6rem; }
  .hero-logo { width: 90px; height: 90px; padding: 14px; border-radius: 24px; }
  .hero-title { letter-spacing: -.055em; }

  .games-section,
  .about-section,
  .contact-section {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }

  .about-section .row { margin-right: 0; margin-left: 0; }
  .page-hero { padding: 3.5rem 0 3.8rem; }
  .support-body main,
  .privacy-body main { padding-top: 3rem !important; padding-bottom: 4rem !important; }
}

@media (max-width: 575.98px) {
  .hero-section { min-height: 500px; }
  .hero-title { font-size: clamp(2.55rem, 14vw, 3.65rem); }
  .hero-subtitle { max-width: 330px; }
  .section-title { font-size: 2.15rem; }
  .game-card .card-img-wrapper { height: 245px; }
  .game-card .card-img-wrapper .app-store-icon { width: 138px; height: 138px; border-radius: 31px; }
  .about-logo { width: 145px; padding: 22px; border-radius: 31px; }
  .support-card { padding: 1.35rem; border-radius: 20px; }
  .privacy-doc { padding: 1.35rem; border-radius: 20px; }
  .privacy-doc h2 { margin-top: 2.15rem; }
  .contact-block { min-height: 74px; }
  .site-footer .footer-link { display: inline-block; margin-top: .25rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* =====================================================
   MYHVN home page — apps, games and music
   ===================================================== */

.nav-link-social {
  color: rgba(255, 154, 169, .82) !important;
}

.nav-link-social:hover,
.nav-link-social:focus {
  color: #fff !important;
  border-color: rgba(255, 93, 117, .18) !important;
  background: rgba(255, 71, 101, .1) !important;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  color: rgba(163, 178, 255, .88);
  font-size: .74rem;
  font-weight: 820;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .8rem;
}

.btn-hero-secondary {
  color: #e9ecff;
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .055);
  box-shadow: inset 0 1px rgba(255, 255, 255, .06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn-hero-secondary:hover,
.btn-hero-secondary:focus {
  color: #fff;
  border-color: rgba(148, 164, 255, .42);
  background: rgba(105, 126, 255, .13);
  box-shadow: 0 12px 30px rgba(25, 39, 118, .2), inset 0 1px rgba(255, 255, 255, .08);
}

.music-section {
  position: relative;
  overflow: hidden;
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
  background:
    radial-gradient(circle at 6% 15%, rgba(255, 92, 132, .1), transparent 28rem),
    radial-gradient(circle at 94% 74%, rgba(255, 182, 91, .08), transparent 30rem),
    linear-gradient(180deg, #080a15, #0b0b17);
  border-top: 1px solid rgba(255, 255, 255, .055);
}

.music-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .42;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, .13) 0 1px, transparent 1.4px),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, .1) 0 1px, transparent 1.4px);
  background-size: 54px 54px, 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, black 22%, black 80%, transparent);
}

.music-section .container {
  position: relative;
  z-index: 1;
}

.genre-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .55rem;
  max-width: 900px;
  margin: 1.55rem auto 2.2rem;
}

.genre-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: .38rem .74rem;
  border: 1px solid rgba(255, 255, 255, .095);
  border-radius: 999px;
  color: rgba(224, 228, 244, .72);
  background: rgba(255, 255, 255, .035);
  font-size: .72rem;
  font-weight: 720;
  letter-spacing: .025em;
  box-shadow: inset 0 1px rgba(255, 255, 255, .035);
}

.album-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .105);
  border-radius: 28px;
  color: var(--text);
  background: linear-gradient(155deg, rgba(27, 30, 46, .97), rgba(12, 14, 25, .99));
  box-shadow: 0 26px 80px rgba(0, 0, 0, .32), inset 0 1px rgba(255, 255, 255, .04);
  transition: transform .28s cubic-bezier(.2, .75, .25, 1), border-color .25s ease, box-shadow .28s ease;
}

.album-card:hover {
  transform: translateY(-7px);
  border-color: rgba(151, 163, 255, .28);
  box-shadow: 0 34px 92px rgba(0, 0, 0, .42), inset 0 1px rgba(255, 255, 255, .055);
}

.album-card-released {
  background:
    linear-gradient(155deg, rgba(30, 34, 57, .98), rgba(12, 15, 29, .99));
}

.album-card-coming {
  background:
    linear-gradient(155deg, rgba(38, 32, 29, .96), rgba(16, 16, 24, .99));
}

.album-cover-wrap {
  position: relative;
  padding: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, .075);
  background:
    radial-gradient(circle at 16% 8%, rgba(96, 122, 255, .2), transparent 42%),
    radial-gradient(circle at 90% 92%, rgba(194, 79, 231, .16), transparent 45%),
    #0a0c18;
}

.album-card-coming .album-cover-wrap {
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 217, 148, .22), transparent 38%),
    radial-gradient(circle at 12% 88%, rgba(174, 106, 52, .18), transparent 45%),
    #14100f;
}

.album-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 20px;
  box-shadow: 0 24px 58px rgba(0, 0, 0, .42);
}

.album-status {
  position: absolute;
  top: 1.85rem;
  left: 1.85rem;
  display: inline-flex;
  align-items: center;
  padding: .4rem .68rem;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  color: #fff;
  background: rgba(8, 10, 19, .74);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .3);
  backdrop-filter: blur(14px) saturate(145%);
  -webkit-backdrop-filter: blur(14px) saturate(145%);
  font-size: .65rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.album-status-live {
  border-color: rgba(255, 118, 151, .3);
  background: rgba(91, 26, 50, .76);
}

.album-status-soon {
  border-color: rgba(255, 212, 146, .34);
  background: rgba(83, 56, 24, .77);
}

.album-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.75rem 1.8rem 1.85rem;
}

.album-number {
  margin-bottom: .35rem;
  color: #8fa0ff;
  font-size: .68rem;
  font-weight: 820;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.album-card-coming .album-number { color: #e7b879; }

.album-copy h3 {
  margin-bottom: .7rem;
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  font-weight: 830;
  letter-spacing: -.045em;
  line-height: 1.02;
}

.album-copy > p:not(.album-number) {
  margin-bottom: 1.35rem;
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.72;
}

.album-links {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: auto;
}

.btn-platform {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: .48rem;
  padding: .5rem .75rem;
  border: 1px solid rgba(255, 255, 255, .105);
  border-radius: 999px;
  color: rgba(235, 238, 250, .82);
  background: rgba(255, 255, 255, .045);
  text-decoration: none;
  font-size: .73rem;
  font-weight: 740;
  transition: transform .18s ease, color .18s ease, border-color .18s ease, background .18s ease;
}

.btn-platform:hover,
.btn-platform:focus {
  transform: translateY(-2px);
  color: #fff;
  border-color: rgba(133, 150, 255, .38);
  background: rgba(96, 116, 255, .13);
}

.btn-platform-featured {
  color: #fff;
  border-color: rgba(255, 91, 116, .27);
  background: rgba(211, 45, 73, .16);
}

.game-card .card-actions {
  gap: .65rem;
}

.btn-app-store {
  width: 100%;
  min-height: 43px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: .95rem;
  padding-left: .95rem;
  color: #fff;
  border-color: rgba(255, 255, 255, .16);
  background: linear-gradient(180deg, #16171d, #050508);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .24), inset 0 1px rgba(255, 255, 255, .08);
}

.btn-app-store:hover,
.btn-app-store:focus {
  color: #fff;
  border-color: rgba(164, 176, 255, .4);
  background: linear-gradient(180deg, #242735, #0b0c13);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .34), inset 0 1px rgba(255, 255, 255, .1);
}

.card-secondary-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .55rem;
}

.app-store-status {
  min-height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .62rem .9rem;
  border: 1px dashed rgba(144, 159, 255, .25);
  border-radius: 999px;
  color: rgba(196, 204, 239, .66);
  background: rgba(85, 103, 193, .06);
  font-size: .75rem;
  font-weight: 690;
  text-align: center;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}

.contact-block strong { font-size: .95rem; }

@media (max-width: 767.98px) {
  .music-section {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }

  .genre-list { margin-bottom: 1.6rem; }
}

@media (max-width: 575.98px) {
  .hero-actions {
    max-width: 330px;
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions .btn { width: 100%; }
  .hero-kicker { font-size: .66rem; letter-spacing: .14em; }
  .album-copy { padding: 1.4rem 1.35rem 1.5rem; }
  .album-status { top: 1.55rem; left: 1.55rem; }
  .genre-pill { font-size: .68rem; }
  .about-actions .btn { width: 100%; }
}

@media (max-width: 389.98px) {
  .card-secondary-actions { grid-template-columns: 1fr; }
  .album-links { align-items: stretch; }
  .btn-platform { width: 100%; justify-content: center; }
}
