/* =========================================================
   SO SMOOTH X — SUPREME MASTER STYLESHEET
   Part 1: Foundation • Variables • Base • Header • Nav • Titles
   Smooth Jazz 24/7 • Neon • Cyber • Mobile-First
========================================================= */

@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700;800;900&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  /* BRAND COLORS */
  --bg-0: #000000;
  --bg-1: #050509;
  --bg-2: #0a0f1a;

  --surface: rgba(5, 7, 18, 0.74);
  --surface-strong: rgba(5, 7, 18, 0.9);
  --surface-soft: rgba(255, 255, 255, 0.045);

  --cyan: #00f7ff;
  --pink: #ff38f8;
  --violet: #9b5cff;
  --blue: #2979ff;
  --green: #5cffb1;
  --gold: #ffd76a;
  --red: #ff2d55;

  --white: #ffffff;
  --ice: #eaffff;
  --muted: #a9bdca;
  --text-main: #eaffff;
  --text-soft: #c8d8e8;
  --text-muted: #91a8ba;
  --text-dark: #021014;

  /* COMPATIBILITY ALIASES */
  --glow-cyan: var(--cyan);
  --glow-pink: var(--pink);
  --glow-violet: var(--violet);
  --glow-blue: var(--blue);
  --glow-green: var(--green);

  --line-soft: rgba(255, 255, 255, 0.08);
  --line-cyan: rgba(0, 247, 255, 0.3);
  --line-pink: rgba(255, 56, 248, 0.28);
  --line-gold: rgba(255, 215, 106, 0.44);

  --black-card: rgba(5, 7, 18, 0.86);

  --grad-main: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 32%, var(--violet) 66%, var(--pink) 100%);
  --grad-soft: linear-gradient(135deg, rgba(0, 247, 255, 0.16), rgba(255, 56, 248, 0.12));
  --grad-dark: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.015));

  --glow-cyan-soft: 0 0 18px rgba(0, 247, 255, 0.28);
  --glow-pink-soft: 0 0 18px rgba(255, 56, 248, 0.24);
  --glow-cyan: 0 0 20px rgba(0, 247, 255, 0.42);
  --glow-pink: 0 0 22px rgba(255, 56, 248, 0.34);

  --glow-luxury:
    0 14px 42px rgba(0, 0, 0, 0.45),
    0 0 26px rgba(0, 247, 255, 0.2),
    0 0 48px rgba(255, 56, 248, 0.14);

  --shadow-card:
    0 18px 44px rgba(0, 0, 0, 0.42),
    0 0 24px rgba(0, 247, 255, 0.14);

  --radius-xs: 10px;
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --radius-pill: 999px;

  --font-display: "Orbitron", sans-serif;
  --font-main: "Orbitron", sans-serif;
  --font-body: "Inter", sans-serif;

  --max: 1240px;
  --max-width: 1240px;
  --max-width-narrow: 920px;

  --nav-height: 96px;

  --speed: 0.28s ease;
  --transition-fast: 0.22s ease;
  --transition-med: 0.35s ease;
  --transition-slow: 0.5s ease;
}

/* =========================================================
   RESET / BASE
========================================================= */

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

html {
  width: 100%;
  min-height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;

  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-main);

  background:
    radial-gradient(circle at 0% 0%, rgba(0, 247, 255, 0.16), transparent 30%),
    radial-gradient(circle at 100% 0%, rgba(255, 56, 248, 0.13), transparent 28%),
    radial-gradient(circle at 50% 112%, rgba(41, 121, 255, 0.13), transparent 36%),
    linear-gradient(180deg, rgba(0,0,0,0.78), rgba(0,0,0,0.94)),
    url("/assets/background.png") no-repeat center center fixed;

  background-size: cover;
  position: relative;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Dark glass overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.26) 100%),
    linear-gradient(rgba(255,255,255,0.015), rgba(255,255,255,0.006));
}

/* Scanline texture */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.13;
  background:
    repeating-linear-gradient(
      180deg,
      rgba(255,255,255,0.012) 0,
      rgba(255,255,255,0.012) 1px,
      transparent 1px,
      transparent 4px
    );
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

button {
  cursor: pointer;
}

p {
  font-family: var(--font-body);
}

::selection {
  background: rgba(0, 247, 255, 0.35);
  color: #fff;
}

/* =========================================================
   GLOBAL READABILITY
========================================================= */

body,
body p,
body li,
body span,
body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
.section-text,
.section-subtitle,
.hero-subtitle,
.intro-subtitle,
.pricing-section,
.pricing-section *,
.pricing-card,
.pricing-card *,
.plan-card,
.plan-card *,
.feature-card,
.feature-card *,
.content-card,
.content-card * {
  color: #ffffff;
}

button,
.button-glow,
.cta-btn,
.cta-button,
.plan-btn,
.submit-btn,
.play-btn-glow,
.live-btn {
  color: #ffffff !important;
}

.section-badge,
.plan-badge,
.hero-badge,
.live-badge,
.tag-badge {
  color: var(--gold) !important;
}

/* =========================================================
   LAYOUT
========================================================= */

section {
  width: 100%;
  padding: clamp(56px, 8vw, 86px) 18px;
  position: relative;
  z-index: 2;
}

.container,
.section-inner,
.content-wrap {
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto;
}

.hero,
.intro-section,
.player-section,
.artist-section,
.album-section,
.contact-section,
.legal-section,
.pricing-section,
.host-section,
.programming-section {
  text-align: center;
}

/* SPA content safety */
#app {
  width: 100%;
  min-height: 55vh;
  position: relative;
  z-index: 2;
}

/* =========================================================
   HEADER / LOGO
========================================================= */

.logo-area {
  width: 100%;
  text-align: center;
  padding: clamp(22px, 5vw, 36px) 16px 10px;
  position: relative;
  z-index: 30;
}

.logo-area::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  width: clamp(220px, 40vw, 310px);
  height: clamp(220px, 40vw, 310px);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: conic-gradient(
    from 180deg,
    transparent,
    rgba(0,247,255,0.54),
    rgba(255,56,248,0.48),
    transparent
  );
  filter: blur(14px);
  opacity: 0.36;
  animation: ssxHaloSpin 18s linear infinite;
  pointer-events: none;
}

.logo-glow {
  width: min(300px, 78vw);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  filter:
    drop-shadow(0 0 18px rgba(0,247,255,0.9))
    drop-shadow(0 0 42px rgba(255,56,248,0.55));
  animation: ssxLogoFloat 5s ease-in-out infinite;
}

@keyframes ssxLogoFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-10px) scale(1.02);
  }
}

@keyframes ssxHaloSpin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* =========================================================
   NAVIGATION
========================================================= */

.main-nav {
  position: sticky;
  top: 0;
  z-index: 1200;

  width: min(var(--max), calc(100% - 24px));
  min-height: 84px;
  margin: 16px auto 26px;
  padding: 14px 18px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;

  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.09);

  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.015)),
    rgba(2, 6, 12, 0.84);

  box-shadow:
    0 12px 34px rgba(0,0,0,0.38),
    0 0 22px rgba(0,247,255,0.18),
    0 0 30px rgba(255,56,248,0.1);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.main-nav ul {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.nav-link {
  min-height: 46px;
  padding: 11px 20px;
  border-radius: var(--radius-pill);

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  border: 1px solid rgba(0,247,255,0.28);

  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015)),
    rgba(0, 0, 0, 0.42);

  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 0 16px rgba(0,247,255,0.12);

  transition:
    transform var(--speed),
    background var(--speed),
    border-color var(--speed),
    box-shadow var(--speed),
    color var(--speed);
}

.nav-link:hover,
.nav-link.active {
  transform: translateY(-3px) scale(1.02);
  border-color: rgba(255,56,248,0.42);
  background: var(--grad-main);
  color: #fff;
  text-shadow: 0 0 10px rgba(255,255,255,0.75);

  box-shadow:
    0 8px 24px rgba(0,0,0,0.3),
    0 0 24px rgba(0,247,255,0.22),
    0 0 34px rgba(255,56,248,0.18);
}

.nav-link::after {
  display: none;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;

  width: 52px;
  height: 52px;
  border-radius: 16px;

  border: 1px solid rgba(0,247,255,0.3);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.01)),
    rgba(0,0,0,0.62);
  color: #fff;

  font-size: 1.7rem;
  box-shadow: 0 0 18px rgba(0,247,255,0.14);
  transition: transform var(--speed), box-shadow var(--speed), border-color var(--speed);
}

.menu-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(255,56,248,0.42);
  box-shadow:
    0 0 18px rgba(0,247,255,0.22),
    0 0 24px rgba(255,56,248,0.16);
}

/* Top-right legacy user status */
.user-status-top-right {
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--cyan);
  text-align: right;
  font-size: 0.82rem;
  z-index: 35;
}

/* =========================================================
   HERO / TITLES / TYPOGRAPHY
========================================================= */

.hero {
  min-height: 66vh;
  display: grid;
  place-items: center;
  padding: clamp(62px, 9vw, 96px) 18px;
}

.hero-content,
.hero-inner {
  width: min(1080px, 100%);
  margin: 0 auto;
  text-align: center;
}

.hero-badge,
.section-badge,
.plan-badge,
.live-badge,
.tag-badge {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 9px;

  max-width: 100%;
  margin: 0 auto 22px;
  padding: 9px 18px;

  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,215,106,0.46);

  background: rgba(255,215,106,0.08);
  box-shadow: 0 0 24px rgba(255,215,106,0.16);

  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 1.35px;
  text-align: center;
  white-space: normal;
}

.hero-title,
.intro-title,
.section-title,
.page-title,
.legal-title,
.contact-title,
.dashboard-title,
.pricing-title,
.player-title,
.host-title,
.programming-title,
.artist-title,
.album-title {
  max-width: 1120px;
  margin: 0 auto 20px;

  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 7vw, 5.45rem);
  line-height: 1.03;
  letter-spacing: 0.04em;
  text-transform: uppercase;

  color: var(--white);
  text-shadow:
    0 0 12px rgba(255,255,255,0.78),
    0 0 28px rgba(0,247,255,0.72),
    0 0 58px rgba(255,56,248,0.46);

  animation: ssxTitleGlow 3.8s ease-in-out infinite alternate;
}

.hero-subtitle,
.intro-subtitle,
.section-subtitle,
.page-subtitle,
.legal-subtitle,
.contact-subtitle,
.dashboard-subtitle,
.pricing-subtitle,
.player-subtitle,
.host-subtitle,
.programming-subtitle,
.artist-subtitle,
.album-subtitle {
  max-width: 900px;
  margin: 0 auto 30px;

  text-align: center;
  color: var(--ice);
  font-family: var(--font-body);
  font-size: clamp(1.02rem, 2vw, 1.35rem);
  line-height: 1.75;
  text-shadow: 0 0 14px rgba(0,247,255,0.25);
}

@keyframes ssxTitleGlow {
  from {
    filter: brightness(1);
  }

  to {
    filter: brightness(1.16);
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-align: center;
  font-family: var(--font-display);
}

.section-text,
.neon-paragraph,
.card-text,
.glow-text,
.host-text,
.plan-text {
  max-width: 920px;
  margin: 0 auto 20px;

  text-align: center;
  color: var(--ice);
  font-family: var(--font-body);
  font-size: 1.06rem;
  line-height: 1.75;
}

.glow-text {
  color: var(--cyan);
  text-shadow: 0 0 12px rgba(0,247,255,0.62);
}

/* =========================================================
   MOBILE NAV / RESPONSIVE FOUNDATION
========================================================= */

@media (max-width: 900px) {
  .main-nav {
    position: relative;
    top: auto;
    width: calc(100% - 28px);
    min-height: auto;
    margin: 14px auto 22px;
    padding: 14px;
    flex-direction: column;
  }

  .menu-toggle {
    display: inline-flex;
    margin: 0 auto;
  }

  .main-nav ul {
    display: none;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    padding-top: 12px;
  }

  .main-nav.show ul,
  #mobileMenu.show,
  .main-nav.is-open ul {
    display: flex;
  }

  .nav-link {
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
    font-size: 0.94rem;
  }

  .user-status-top-right {
    position: static;
    margin: 10px auto 0;
    text-align: center;
  }
}

@media (max-width: 640px) {
  body {
    background-attachment: scroll;
  }

  section {
    padding: 54px 16px;
  }

  .container,
  .section-inner,
  .content-wrap {
    width: min(100%, calc(100% - 20px));
  }

  .logo-area {
    padding-top: 22px;
  }

  .logo-glow {
    width: min(230px, 76vw);
  }

  .logo-area::before {
    width: 230px;
    height: 230px;
  }

  .hero {
    min-height: auto;
    padding: 58px 16px;
  }

  .hero-title,
  .intro-title,
  .section-title,
  .page-title,
  .legal-title,
  .contact-title,
  .dashboard-title,
  .pricing-title,
  .player-title,
  .host-title,
  .programming-title,
  .artist-title,
  .album-title {
    font-size: clamp(2rem, 11vw, 3.1rem);
    letter-spacing: 0.025em;
  }

  .hero-subtitle,
  .intro-subtitle,
  .section-subtitle,
  .page-subtitle,
  .legal-subtitle,
  .contact-subtitle,
  .dashboard-subtitle,
  .pricing-subtitle,
  .player-subtitle,
  .host-subtitle,
  .programming-subtitle,
  .artist-subtitle,
  .album-subtitle {
    font-size: 1rem;
    line-height: 1.68;
  }

  .hero-badge,
  .section-badge,
  .plan-badge,
  .live-badge,
  .tag-badge {
    width: fit-content;
    max-width: 100%;
    padding: 8px 14px;
    font-size: 0.68rem;
    letter-spacing: 1px;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
/* =========================================================
   PART 2 — CARDS • GRIDS • BUTTONS • PLAYER • PRICING • FORMS
========================================================= */

/* =========================================================
   UNIVERSAL CARDS
========================================================= */

.glow-box,
.content-card,
.feature-card,
.host-card,
.dashboard-card,
.legal-box,
.contact-card,
.pricing-card,
.player-card,
.programming-card,
.artist-card,
.album-card,
.track-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  width: min(100%, 1000px);
  margin: 28px auto;
  padding: clamp(22px, 4vw, 44px);

  border-radius: var(--radius-lg);
  border: 1px solid var(--line-cyan);

  background:
    linear-gradient(135deg, rgba(255,255,255,0.075), rgba(255,255,255,0.018)),
    var(--black-card);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow: var(--glow-luxury);
  text-align: center;

  transition:
    transform var(--speed),
    border-color var(--speed),
    box-shadow var(--speed);
}

.glow-box::before,
.content-card::before,
.feature-card::before,
.host-card::before,
.dashboard-card::before,
.legal-box::before,
.contact-card::before,
.pricing-card::before,
.player-card::before,
.programming-card::before,
.artist-card::before,
.album-card::before,
.track-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.09) 42%,
    transparent 68%
  );

  transform: translateX(-125%);
  animation: ssxLuxurySweep 7s ease-in-out infinite;
}

.glow-box::after,
.content-card::after,
.feature-card::after,
.host-card::after,
.dashboard-card::after,
.legal-box::after,
.contact-card::after,
.pricing-card::after,
.player-card::after,
.programming-card::after,
.artist-card::after,
.album-card::after,
.track-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  pointer-events: none;
  border-radius: inherit;

  background:
    radial-gradient(circle at 50% 0%, rgba(0,247,255,0.14), transparent 38%),
    radial-gradient(circle at 50% 100%, rgba(255,56,248,0.1), transparent 42%);

  opacity: 0.9;
}

.glow-box > *,
.content-card > *,
.feature-card > *,
.host-card > *,
.dashboard-card > *,
.legal-box > *,
.contact-card > *,
.pricing-card > *,
.player-card > *,
.programming-card > *,
.artist-card > *,
.album-card > *,
.track-card > * {
  position: relative;
  z-index: 2;
}

@keyframes ssxLuxurySweep {
  0%,
  35% {
    transform: translateX(-125%);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  75%,
  100% {
    transform: translateX(125%);
    opacity: 0;
  }
}

.feature-card:hover,
.host-card:hover,
.dashboard-card:hover,
.pricing-card:hover,
.programming-card:hover,
.artist-card:hover,
.album-card:hover {
  transform: translateY(-7px) scale(1.012);
  border-color: rgba(255,215,106,0.68);

  box-shadow:
    0 0 28px rgba(255,215,106,0.24),
    0 0 58px rgba(0,247,255,0.38),
    0 0 100px rgba(255,56,248,0.22);
}

/* =========================================================
   RESPONSIVE GRIDS
========================================================= */

.card-grid,
.host-grid,
.dashboard-grid,
.feature-grid,
.programming-grid,
.artist-grid,
.album-grid {
  width: min(var(--max), calc(100% - 32px));
  margin: 34px auto;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 24px;
}

.card-grid > *,
.host-grid > *,
.dashboard-grid > *,
.feature-grid > *,
.programming-grid > *,
.artist-grid > *,
.album-grid > * {
  width: 100%;
  height: 100%;
  margin: 0;
}

/* Pricing stays centered, balanced, and equal height */
.pricing-grid {
  width: min(820px, calc(100% - 32px));
  margin: 38px auto;

  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  align-items: stretch;
  justify-content: center;
  gap: 26px;
}

.pricing-grid > * {
  width: 100%;
  height: 100%;
  margin: 0;
}

.pricing-card {
  min-height: 470px;
  padding: 30px 24px;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.pricing-card .plan-btn,
.pricing-card .button-glow,
.pricing-card .paypal-wrapper {
  margin-top: auto;
}

/* =========================================================
   BUTTON SYSTEM
========================================================= */

.button-glow,
.play-btn-glow,
.live-btn,
.cta-button,
.cta-btn,
.submit-btn,
.plan-btn {
  position: relative;
  overflow: hidden;

  min-height: 52px;
  padding: 14px 28px;
  margin: 12px 8px;

  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

  border: 0;
  border-radius: var(--radius-pill);

  cursor: pointer;
  text-decoration: none;

  color: #041014 !important;
  background: linear-gradient(135deg, var(--cyan), #9fffff 48%, var(--pink));

  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;

  box-shadow:
    0 0 18px rgba(0,247,255,0.78),
    0 0 38px rgba(255,56,248,0.44);

  transition:
    transform var(--speed),
    box-shadow var(--speed),
    filter var(--speed);
}

.button-glow::before,
.play-btn-glow::before,
.live-btn::before,
.cta-button::before,
.cta-btn::before,
.submit-btn::before,
.plan-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -90%;
  width: 50%;
  height: 100%;

  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.75), transparent);
  transform: skewX(-22deg);
  animation: ssxButtonShine 3.8s ease-in-out infinite;

  pointer-events: none;
}

.button-glow:hover,
.play-btn-glow:hover,
.live-btn:hover,
.cta-button:hover,
.cta-btn:hover,
.submit-btn:hover,
.plan-btn:hover {
  transform: translateY(-4px) scale(1.03);
  filter: brightness(1.08);

  box-shadow:
    0 0 24px rgba(255,255,255,0.72),
    0 0 52px rgba(0,247,255,0.82),
    0 0 88px rgba(255,56,248,0.56);
}

.button-glow:active,
.play-btn-glow:active,
.live-btn:active,
.cta-button:active,
.cta-btn:active,
.submit-btn:active,
.plan-btn:active {
  transform: scale(0.97);
}

@keyframes ssxButtonShine {
  0%,
  35% {
    left: -90%;
  }

  65%,
  100% {
    left: 130%;
  }
}

.button-glow-small {
  min-height: 36px;
  padding: 7px 14px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  border-radius: var(--radius-pill);
  border: 1px solid var(--line-cyan);

  color: var(--cyan);
  background: rgba(0,0,0,0.66);

  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;

  box-shadow: 0 0 14px rgba(0,247,255,0.35);
  cursor: pointer;

  transition:
    transform var(--speed),
    background var(--speed),
    color var(--speed),
    box-shadow var(--speed);
}

.button-glow-small:hover {
  transform: translateY(-2px);
  color: #031014;
  background: var(--cyan);
  box-shadow: 0 0 24px rgba(0,247,255,0.92);
}

.player-controls,
.button-row,
.cta-row {
  width: min(760px, 100%);
  margin: 22px auto;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* =========================================================
   PLAYER SHELL
========================================================= */

.player-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  width: min(920px, 100%);
  margin: 30px auto;
  padding: clamp(22px, 4vw, 42px);

  border-radius: var(--radius-lg);
  border: 1px solid var(--line-cyan);

  background:
    radial-gradient(circle at top, rgba(0,247,255,0.13), transparent 35%),
    linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,255,255,0.015)),
    rgba(0,0,0,0.88);

  box-shadow:
    0 0 28px rgba(0,247,255,0.55),
    0 0 70px rgba(155,92,255,0.35),
    0 0 130px rgba(255,56,248,0.22),
    inset 0 0 38px rgba(0,247,255,0.08);

  text-align: center;
}

.player-shell::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: 0;
  pointer-events: none;

  background:
    radial-gradient(circle at 30% 20%, rgba(0,247,255,0.2), transparent 34%),
    radial-gradient(circle at 70% 80%, rgba(255,56,248,0.16), transparent 38%);

  filter: blur(8px);
  opacity: 0.82;
}

.player-shell > * {
  position: relative;
  z-index: 2;
}

.player-art,
.album-cover,
.artist-profile-image {
  display: block;
  margin: 0 auto 24px;

  object-fit: cover;

  border: 3px solid rgba(255,255,255,0.18);
  box-shadow:
    0 0 30px rgba(0,247,255,0.68),
    0 0 58px rgba(255,56,248,0.34);
}

.player-art {
  width: min(220px, 68vw);
  height: min(220px, 68vw);
  border-radius: var(--radius-md);
  animation: ssxAlbumPulse 3s ease-in-out infinite alternate;
}

.album-cover {
  width: min(420px, 100%);
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
}

.artist-profile-image {
  width: min(360px, 100%);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
}

@keyframes ssxAlbumPulse {
  from {
    box-shadow:
      0 0 28px rgba(0,247,255,0.68),
      0 0 56px rgba(255,56,248,0.34);
  }

  to {
    box-shadow:
      0 0 42px rgba(255,255,255,0.58),
      0 0 84px rgba(0,247,255,0.7),
      0 0 112px rgba(255,56,248,0.42);
  }
}

.now-playing-title {
  margin: 0 auto 8px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 4vw, 2.55rem);
  line-height: 1.12;
  text-shadow: 0 0 18px rgba(0,247,255,0.78);
}

.now-playing-meta {
  margin: 0 auto 12px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 1rem;
}

.live-btn {
  background: linear-gradient(135deg, var(--green), var(--cyan));
}

.live-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;

  display: inline-block;
  border-radius: 50%;

  background: var(--red);
  box-shadow: 0 0 12px var(--red), 0 0 22px rgba(255,45,85,0.75);

  animation: ssxLivePulse 1.15s ease-in-out infinite;
}

@keyframes ssxLivePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.76;
  }

  50% {
    transform: scale(1.38);
    opacity: 1;
  }
}

.volume-slider,
input[type="range"] {
  accent-color: var(--cyan);
}

.ssx-player-page {
  width: min(100%, 1100px);
  margin: 0 auto;
  padding: 28px 18px 80px;
}

.ssx-media-stage {
  position: relative;
  width: min(100%, 980px);
  aspect-ratio: 16 / 9;
  margin: 24px auto 18px;
  border-radius: 26px;
  overflow: hidden;
  background: #050510;
  border: 1px solid rgba(0, 247, 255, 0.25);
  box-shadow:
    0 0 30px rgba(0, 247, 255, 0.35),
    0 0 90px rgba(255, 0, 200, 0.22),
    inset 0 0 30px rgba(255, 255, 255, 0.04);
}

.ssx-media-bg {
  position: absolute;
  inset: 0;
  z-index: 0; /* 🔥 keep it behind everything */

  background:
    radial-gradient(circle at 30% 20%, rgba(0, 247, 255, 0.18), transparent 42%),
    radial-gradient(circle at 70% 70%, rgba(255, 0, 200, 0.14), transparent 48%),
    linear-gradient(135deg, #03040a, #0b1020 50%, #050510);

  animation: ssxStageGlow 10s ease-in-out infinite alternate;

  pointer-events: none;

  /* 🔥 soften the "popup" effect */
  opacity: 0.85;
  filter: blur(2px) saturate(1.1);
}

.ssx-stage-art {
  position: absolute;
  width: min(36%, 320px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  left: 7%;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 22px;
  box-shadow:
    0 0 24px rgba(0, 247, 255, 0.45),
    0 0 70px rgba(255, 0, 200, 0.28);
  z-index: 2;
}

.ssx-stage-overlay {
  position: absolute;
  right: 7%;
  top: 50%;
  transform: translateY(-50%);
  width: 46%;
  z-index: 3;
}

.ssx-stage-overlay h2 {
  margin: 14px 0 8px;
  font-size: clamp(1.8rem, 4vw, 4rem);
  line-height: 1;
  color: #fff;
  text-shadow: 0 0 18px rgba(0, 247, 255, 0.65);
}

.ssx-stage-overlay p {
  margin: 6px 0;
  color: rgba(255,255,255,0.82);
}

.ssx-progress-shell {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 7px;
  background: rgba(255,255,255,0.08);
  z-index: 5;
}

.ssx-progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #00f7ff, #ff00c8);
  box-shadow: 0 0 18px rgba(0,247,255,0.7);
}

.ssx-player-controls {
  width: min(100%, 980px);
  margin: 0 auto;
}

@keyframes ssxStageGlow {
  from { filter: hue-rotate(0deg) brightness(1); }
  to { filter: hue-rotate(24deg) brightness(1.15); }
}

/* =========================================================
   📱 SUPREME MOBILE PLAYER REBUILD — APP MODE 12/10
   Glass Panels • Sticky Mini Player • Swipe Feel • LIVE Pulse
========================================================= */

@media (max-width: 760px) {

  .ssx-player-page {
    padding: 18px 10px 140px !important;
    overflow-x: hidden;
  }

  .player-card,
  .player-shell {
    padding: 22px 14px 30px !important;
    border-radius: 26px !important;
  }

  /* 🔥 PLAYER STAGE — MOBILE APP FEEL */
  .ssx-media-stage {
    width: 100% !important;
    margin: 18px auto 18px !important;
    border-radius: 28px !important;
    overflow: hidden !important;
    touch-action: pan-y !important;
  }

  /* 🔥 GLASS FLOATING BUTTON PANEL */
  .player-controls,
  .button-row,
  .ssx-stage-controls {
    width: min(94%, 520px) !important;
    margin: 18px auto 22px !important;
    padding: 14px !important;

    display: flex !important;
    flex-direction: column !important;
    gap: 13px !important;

    border-radius: 28px !important;
    border: 1px solid rgba(0,247,255,0.26) !important;

    background:
      linear-gradient(180deg, rgba(255,255,255,0.13), rgba(255,255,255,0.035)),
      rgba(2, 8, 16, 0.68) !important;

    backdrop-filter: blur(18px) saturate(1.25) !important;
    -webkit-backdrop-filter: blur(18px) saturate(1.25) !important;

    box-shadow:
      0 18px 48px rgba(0,0,0,0.48),
      0 0 26px rgba(0,247,255,0.22),
      0 0 42px rgba(255,56,248,0.14),
      inset 0 1px 0 rgba(255,255,255,0.14) !important;
  }

  .player-controls .button-glow,
  .player-controls .play-btn-glow,
  .player-controls .live-btn,
  .player-controls button,
  .button-row .button-glow,
  .button-row button,
  .ssx-stage-controls .button-glow,
  .ssx-stage-controls .play-btn-glow,
  .ssx-stage-controls .live-btn {
    width: 100% !important;
    min-height: 58px !important;
    margin: 0 !important;
    padding: 15px 18px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;

    border-radius: 999px !important;
    border: 1px solid rgba(255,255,255,0.16) !important;

    font-size: 0.88rem !important;
    line-height: 1.15 !important;
    letter-spacing: 0.075em !important;

    transform: translateZ(0);
    -webkit-tap-highlight-color: transparent;
  }

  /* 🔥 PRIMARY BUTTONS */
  #playBtn,
  #liveBtn {
    min-height: 66px !important;
    font-size: 0.98rem !important;
  }

  /* 🔴 LIVE BUTTON — RADIO STATION PULSE */
  #liveBtn,
  .live-btn {
    position: relative !important;
    overflow: hidden !important;

    background:
      radial-gradient(circle at 18% 50%, rgba(255,45,85,0.95), transparent 9%),
      linear-gradient(135deg, #5cffb1, #00f7ff 58%, #34fff5) !important;

    animation: ssxMobileLivePulse 1.65s ease-in-out infinite !important;
  }

  #liveBtn::after,
  .live-btn::after {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: inherit;
    pointer-events: none;

    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.65), transparent);
    transform: translateX(-120%) skewX(-18deg);
    animation: ssxMobileLiveSweep 2.8s ease-in-out infinite;
  }

  @keyframes ssxMobileLivePulse {
    0%, 100% {
      box-shadow:
        0 0 18px rgba(0,247,255,0.68),
        0 0 34px rgba(92,255,177,0.38),
        0 0 0 rgba(255,45,85,0);
      filter: brightness(1);
    }

    50% {
      box-shadow:
        0 0 28px rgba(0,247,255,0.95),
        0 0 54px rgba(92,255,177,0.62),
        0 0 24px rgba(255,45,85,0.45);
      filter: brightness(1.12);
    }
  }

  @keyframes ssxMobileLiveSweep {
    0%, 45% {
      transform: translateX(-120%) skewX(-18deg);
      opacity: 0;
    }

    60% {
      opacity: 1;
    }

    100% {
      transform: translateX(130%) skewX(-18deg);
      opacity: 0;
    }
  }

  /* 🔥 SECONDARY BUTTONS */
  #shareBtn,
  #favoriteCurrentTrackBtn,
  #skipBtn {
    min-height: 54px !important;
    opacity: 0.96;
  }

  /* 🔥 MOBILE SWIPE FEEL */
  .ssx-media-stage,
  .player-shell,
  .player-card {
    scroll-snap-align: start;
  }

  #app,
  .ssx-player-page {
    scroll-behavior: smooth;
  }

  /* 🔥 VOLUME GLASS ROW */
  .ssx-stage-volume,
  .volume-control,
  .volume-row {
    width: min(94%, 520px) !important;
    margin: 16px auto 0 !important;
    padding: 12px 14px !important;

    display: grid !important;
    grid-template-columns: 78px 1fr !important;
    align-items: center !important;
    gap: 12px !important;

    border-radius: 999px !important;
    border: 1px solid rgba(0,247,255,0.22) !important;
    background: rgba(0,0,0,0.42) !important;

    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
  }

  .ssx-stage-volume label,
  .volume-control label,
  .volume-row label {
    margin: 0 !important;
    font-size: 0.72rem !important;
    text-align: left !important;
    opacity: 0.9 !important;
    transform: none !important;
  }

  input[type="range"] {
    width: 100% !important;
  }

  /* 🔥 PREMIUM BADGE */
  .premium-active,
  .premium-badge,
  .premium-status,
  #premiumStatus {
    width: fit-content !important;
    max-width: 92% !important;
    margin: 24px auto 18px !important;
    text-align: center !important;
  }

  /* 🔥 LOWER CTA GLASS PANEL */
  .cta-row,
  .bottom-actions,
  .player-extra-actions {
    width: min(94%, 520px) !important;
    margin: 18px auto 0 !important;

    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }

  .cta-row .button-glow,
  .bottom-actions .button-glow,
  .player-extra-actions .button-glow {
    width: 100% !important;
    min-height: 58px !important;
    margin: 0 !important;
  }

  .player-art {
    margin-bottom: 18px !important;
  }

  .now-playing-title {
    margin-top: 10px !important;
  }

  /* 🔥 STICKY MINI PLAYER ON SCROLL */
  body.ssx-playing .ssx-mini-player,
  body.ssx-playing #ssxMiniPlayer {
    position: fixed !important;
    left: 12px !important;
    right: 12px !important;
    bottom: 14px !important;
    z-index: 99999 !important;

    min-height: 66px !important;
    padding: 10px 14px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;

    border-radius: 22px !important;
    border: 1px solid rgba(0,247,255,0.34) !important;

    background:
      linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04)),
      rgba(0,0,0,0.78) !important;

    backdrop-filter: blur(18px) saturate(1.25) !important;
    -webkit-backdrop-filter: blur(18px) saturate(1.25) !important;

    box-shadow:
      0 0 24px rgba(0,247,255,0.45),
      0 0 42px rgba(255,56,248,0.22),
      0 12px 36px rgba(0,0,0,0.55) !important;
  }

  body:not(.ssx-playing) .ssx-mini-player,
  body:not(.ssx-playing) #ssxMiniPlayer {
    display: none !important;
  }

  .ssx-mini-player img,
  #ssxMiniPlayer img {
    width: 46px !important;
    height: 46px !important;
    border-radius: 14px !important;
    object-fit: cover !important;
  }

  .ssx-mini-player-title,
  .ssx-mini-title,
  #ssxMiniPlayer .title {
    font-size: 0.78rem !important;
    line-height: 1.15 !important;
    text-align: left !important;
  }

  .ssx-mini-player button,
  #ssxMiniPlayer button {
    width: 42px !important;
    height: 42px !important;
    min-height: 42px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    margin: 0 !important;
  }
}
/* =========================================================
   ARTISTS / ALBUM / TRACKS
========================================================= */

.artist-card img,
.host-card img {
  width: 170px;
  height: 170px;
  object-fit: cover;

  margin: 0 auto 18px;
  border-radius: 50%;
  border: 2px solid var(--cyan);

  box-shadow:
    0 0 18px rgba(0,247,255,0.55),
    0 0 34px rgba(255,56,248,0.22);
}

.track-list {
  width: min(760px, 100%);
  margin: 28px auto 0;
  padding: 0;
  list-style: none;

  display: grid;
  gap: 12px;
}

.track-list li,
.track-row {
  width: 100%;
  min-height: 58px;
  padding: 14px 16px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;

  border-radius: var(--radius-sm);
  border: 1px solid rgba(0,247,255,0.26);

  background: rgba(0,0,0,0.52);
  color: var(--ice);

  font-family: var(--font-body);
  box-shadow: inset 0 0 18px rgba(0,247,255,0.06);
}

.track-number {
  flex: 0 0 auto;
  color: var(--gold);
  font-weight: 900;
}

.track-title {
  flex: 1 1 auto;
  text-align: left;
  min-width: 0;
}

/* =========================================================
   PRICING
========================================================= */

.pricing-card.featured,
.pricing-card.premium {
  border-color: rgba(255,215,106,0.58);

  box-shadow:
    0 0 24px rgba(255,215,106,0.25),
    0 0 54px rgba(0,247,255,0.32),
    0 0 90px rgba(255,56,248,0.18);
}

.price {
  margin: 14px auto 12px;

  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1;

  background: linear-gradient(135deg, #fff, var(--gold), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}

.price span {
  display: inline-block;
  font-size: 0.95rem;
  color: var(--muted) !important;
}

.plan-list {
  width: min(360px, 100%);
  margin: 20px auto 22px;
  padding: 0;
  list-style: none;
}

.plan-list li {
  margin: 10px auto;
  color: var(--ice);
  font-family: var(--font-body);
  line-height: 1.55;
}

/* =========================================================
   FORMS
========================================================= */

form {
  width: min(760px, 100%);
  margin: 28px auto;
}

.form-group {
  margin-bottom: 18px;
  text-align: left;
}

label {
  display: block;
  margin-bottom: 8px;

  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
textarea,
select {
  width: 100%;
  padding: 15px 16px;

  border-radius: var(--radius-sm);
  border: 1px solid rgba(0,247,255,0.38);

  background: rgba(0,0,0,0.72);
  color: var(--white);

  outline: none;

  box-shadow: inset 0 0 14px rgba(0,247,255,0.08);

  transition:
    border-color var(--speed),
    box-shadow var(--speed),
    background var(--speed);
}

textarea {
  min-height: 160px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--cyan);

  box-shadow:
    0 0 18px rgba(0,247,255,0.44),
    inset 0 0 18px rgba(0,247,255,0.12);
}

::placeholder {
  color: rgba(234,255,255,0.48);
}

/* =========================================================
   MOBILE POLISH
========================================================= */

@media (max-width: 980px) {
  .card-grid,
  .host-grid,
  .dashboard-grid,
  .feature-grid,
  .programming-grid,
  .artist-grid,
  .album-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid {
    width: min(760px, calc(100% - 28px));
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    gap: 22px;
  }
}

@media (max-width: 760px) {
  .card-grid,
  .host-grid,
  .dashboard-grid,
  .feature-grid,
  .programming-grid,
  .artist-grid,
  .album-grid,
  .pricing-grid {
    width: min(100%, calc(100% - 24px));
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .glow-box,
  .content-card,
  .feature-card,
  .host-card,
  .dashboard-card,
  .legal-box,
  .contact-card,
  .pricing-card,
  .player-card,
  .programming-card,
  .artist-card,
  .album-card,
  .track-card {
    margin: 22px auto;
    padding: 24px 18px;
    border-radius: 22px;
  }

  .pricing-card {
    min-height: auto;
  }

  .player-controls,
  .button-row,
  .cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .button-glow,
  .play-btn-glow,
  .live-btn,
  .cta-button,
  .cta-btn,
  .submit-btn,
  .plan-btn {
    width: 100%;
    margin: 0;
  }

  .track-list li,
  .track-row {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .track-title {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .player-art {
    width: 180px;
    height: 180px;
  }

  .artist-card img,
  .host-card img {
    width: 145px;
    height: 145px;
  }

  .price {
    font-size: clamp(2.2rem, 12vw, 3.15rem);
  }
}
/* =========================================================
   PART 3 — FOOTER • LEGAL • TRANSITIONS • CURSOR • ACCESSIBILITY
========================================================= */

.site-footer,
footer {
  width: 100%;
  margin-top: clamp(58px, 8vw, 90px);
  padding: clamp(40px, 6vw, 54px) 18px 38px;

  position: relative;
  z-index: 10;
  overflow: hidden;

  text-align: center;

  border-top: 1px solid rgba(0, 247, 255, 0.34);

  background:
    radial-gradient(circle at 20% 0%, rgba(0, 247, 255, 0.18), transparent 32%),
    radial-gradient(circle at 80% 20%, rgba(255, 56, 248, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.96) 28%, rgba(0,0,0,0.98)),
    rgba(0,0,0,0.9);

  box-shadow:
    0 -18px 60px rgba(0, 247, 255, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.site-footer::before,
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;

  width: min(980px, 88%);
  height: 3px;

  transform: translateX(-50%);
  border-radius: var(--radius-pill);

  background: linear-gradient(
    90deg,
    transparent,
    var(--cyan),
    var(--pink),
    var(--cyan),
    transparent
  );

  box-shadow:
    0 0 18px rgba(0,247,255,0.9),
    0 0 34px rgba(255,56,248,0.55);

  animation: ssxFooterBeam 4s linear infinite;
}

.site-footer::after,
footer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 18px,
      rgba(255,255,255,0.025) 19px,
      transparent 20px
    );

  opacity: 0.35;
  mask-image: linear-gradient(180deg, #000, transparent 80%);
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 80%);
}

.footer-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;

  position: relative;
  z-index: 2;
}

.footer-inner::before {
  content: "SO SMOOTH X";

  display: block;
  margin-bottom: 18px;

  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 900;
  letter-spacing: 0.24em;

  color: rgba(255,255,255,0.9);

  text-shadow:
    0 0 12px rgba(0,247,255,0.75),
    0 0 26px rgba(255,56,248,0.35);
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;

  flex-wrap: wrap;
  margin: 18px auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;

  flex-wrap: wrap;
  margin: 18px auto 10px;
}

.footer-links a,
footer a {
  position: relative;

  color: var(--cyan);
  text-decoration: none;

  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  transition:
    color var(--speed),
    text-shadow var(--speed),
    transform var(--speed);
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;

  width: 0;
  height: 2px;

  transform: translateX(-50%);
  border-radius: var(--radius-pill);

  background: linear-gradient(90deg, var(--cyan), var(--pink));
  box-shadow: 0 0 14px rgba(0,247,255,0.75);

  transition: width var(--speed);
}

.footer-links a:hover,
footer a:hover {
  color: var(--pink);
  text-shadow:
    0 0 14px rgba(255,56,248,0.88),
    0 0 26px rgba(0,247,255,0.45);
}

.footer-links a:hover::after {
  width: 100%;
}

.social-btn,
.footer-social a {
  position: relative;
  overflow: hidden;

  width: 48px;
  height: 48px;
  border-radius: 50%;

  display: inline-grid;
  place-items: center;

  border: 1px solid rgba(0,247,255,0.55);

  color: var(--cyan);

  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.18), transparent 38%),
    rgba(0,0,0,0.68);

  box-shadow:
    0 0 14px rgba(0,247,255,0.35),
    inset 0 0 14px rgba(0,247,255,0.12);

  transition:
    transform var(--speed),
    color var(--speed),
    background var(--speed),
    box-shadow var(--speed);
}

.social-btn::before,
.footer-social a::before {
  content: "";
  position: absolute;
  inset: -45%;

  background: conic-gradient(
    from 180deg,
    transparent,
    rgba(0,247,255,0.8),
    rgba(255,56,248,0.7),
    transparent
  );

  opacity: 0;
  animation: ssxFooterIconSpin 4s linear infinite;

  transition: opacity var(--speed);
}

.social-btn i,
.footer-social a i {
  position: relative;
  z-index: 2;
}

.social-btn:hover,
.footer-social a:hover {
  transform: translateY(-5px) scale(1.08);
  color: #05070d;
  background: var(--cyan);

  box-shadow:
    0 0 24px rgba(0,247,255,0.85),
    0 0 42px rgba(255,56,248,0.45);
}

.social-btn:hover::before,
.footer-social a:hover::before {
  opacity: 1;
}

.footer-credit,
.site-footer p,
footer p {
  max-width: 900px;
  margin: 18px auto 0;

  color: rgba(225,245,255,0.8);
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* =========================================================
   LEGAL PAGES — CENTERED READABILITY
========================================================= */

.legal-section {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 10px;
}

.legal-section h1,
.legal-section h2,
.legal-section h3,
.legal-section p {
  text-align: center;
}

.legal-section h1,
.legal-section h2,
.legal-section h3 {
  text-shadow:
    0 0 14px rgba(0,247,255,0.6),
    0 0 28px rgba(255,56,248,0.25);
}

.legal-section p,
.legal-section li {
  color: var(--ice);
  font-family: var(--font-body);
  line-height: 1.85;
}

.legal-section ul,
.legal-section ol {
  width: min(820px, 100%);
  margin: 24px auto;
  padding-left: 24px;

  text-align: left;
}

.legal-section li {
  margin-bottom: 12px;
}

.legal-box {
  width: min(960px, 100%);
}

/* =========================================================
   PAGE TRANSITIONS
========================================================= */

.fade-in {
  animation: ssxPageFadeIn 0.55s ease both;
}

.fade-out {
  animation: ssxPageFadeOut 0.3s ease both;
}

@keyframes ssxPageFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ssxPageFadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

/* =========================================================
   CURSOR GLOW
========================================================= */

#cursorGlow {
  position: fixed;
  left: -12px;
  top: -12px;

  width: 24px;
  height: 24px;
  border-radius: 50%;

  pointer-events: none;
  z-index: 999999;

  background: radial-gradient(circle, rgba(0,247,255,0.82), transparent 68%);

  box-shadow:
    0 0 18px rgba(0,247,255,0.88),
    0 0 36px rgba(255,56,248,0.58);

  mix-blend-mode: screen;
}

/* =========================================================
   ACCESSIBILITY / FOCUS / SCROLLBAR
========================================================= */

.nav-link:focus-visible,
.button-glow:focus-visible,
.cta-btn:focus-visible,
.cta-button:focus-visible,
.plan-btn:focus-visible,
.live-btn:focus-visible,
.play-btn-glow:focus-visible,
.submit-btn:focus-visible,
.button-glow-small:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

body::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-track {
  background: #020205;
}

body::-webkit-scrollbar-thumb {
  border-radius: var(--radius-pill);
  background: linear-gradient(var(--cyan), var(--pink));
  box-shadow: 0 0 12px rgba(0,247,255,0.7);
}

/* =========================================================
   LIVE STATUS BADGE
========================================================= */

#liveStatusBadge {
  width: fit-content;
  margin: 18px auto 0;
  animation: ssxLiveStatusPulse 1.6s infinite ease-in-out;
}

#liveStatusBadge.not-live {
  opacity: 0.65;
  animation: none;
}

@keyframes ssxLiveStatusPulse {
  0%,
  100% {
    box-shadow: 0 0 14px rgba(0, 247, 255, 0.45);
  }

  50% {
    box-shadow: 0 0 30px rgba(0, 247, 255, 0.95);
  }
}

/* =========================================================
   FOOTER ANIMATIONS
========================================================= */

@keyframes ssxFooterBeam {
  0% {
    filter: hue-rotate(0deg);
    opacity: 0.65;
  }

  50% {
    filter: hue-rotate(90deg);
    opacity: 1;
  }

  100% {
    filter: hue-rotate(0deg);
    opacity: 0.65;
  }
}

@keyframes ssxFooterIconSpin {
  to {
    transform: rotate(360deg);
  }
}

/* =========================================================
   MOBILE POLISH
========================================================= */

@media (max-width: 760px) {
  body {
    cursor: auto;
  }

  #cursorGlow {
    display: none;
  }

  .legal-section {
    width: min(100%, calc(100% - 24px));
  }

  .legal-section ul,
  .legal-section ol {
    padding-left: 20px;
  }
}

@media (max-width: 640px) {
  .site-footer,
  footer {
    padding: 42px 16px 34px;
  }

  .footer-inner::before {
    letter-spacing: 0.16em;
  }

  .footer-links {
    gap: 14px;
  }

  .footer-links a,
  footer a {
    font-size: 0.78rem;
  }

  .social-btn,
  .footer-social a {
    width: 44px;
    height: 44px;
  }
}
/* =========================================================
   PART 4 — FLOATING LISTEN CTA • PLAYER POLISH • AUTH • USER STATUS
========================================================= */

/* =========================================================
   LISTEN MAIN CTA — FLOATING SUPREME BUTTON
========================================================= */

.listen-main-cta {
  position: fixed;
  top: 125px;
  right: 26px;
  z-index: 999;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  max-width: calc(100vw - 32px);
  min-height: 46px;
  padding: 13px 24px;

  border-radius: var(--radius-pill);
  border: 1px solid rgba(0,247,255,0.65);

  color: #04121a;
  background: linear-gradient(135deg, var(--cyan), var(--pink));

  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;

  box-shadow:
    0 0 18px rgba(0,247,255,0.6),
    0 0 36px rgba(255,56,248,0.35);

  cursor: pointer;
  overflow: hidden;
  transition:
    transform var(--speed),
    box-shadow var(--speed),
    filter var(--speed);
}

.listen-main-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;

  width: 120%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.42),
    transparent
  );

  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}

.listen-main-cta::after {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;

  border-radius: inherit;

  background: linear-gradient(90deg, var(--cyan), var(--pink), var(--cyan));
  opacity: 0.35;
  filter: blur(12px);

  animation: ssxListenGlowPulse 2.5s ease-in-out infinite;
  pointer-events: none;
}

.listen-main-cta:hover {
  transform: translateY(-5px) scale(1.05);
  filter: brightness(1.08);

  box-shadow:
    0 0 28px rgba(0,247,255,0.95),
    0 0 50px rgba(255,56,248,0.6);
}

.listen-main-cta:hover::before {
  left: 140%;
}

.listen-main-cta:active {
  transform: scale(0.96);
}

.listen-main-cta i {
  font-size: 0.9rem;
}

.listen-main-cta::marker {
  display: none;
}

.listen-main-cta span.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  flex: 0 0 auto;

  border-radius: 50%;

  background: var(--red);
  box-shadow:
    0 0 10px var(--red),
    0 0 18px rgba(255,45,85,0.85);

  animation: ssxLiveBlink 1.2s infinite;
}

@keyframes ssxListenGlowPulse {
  0%,
  100% {
    opacity: 0.25;
  }

  50% {
    opacity: 0.65;
  }
}

@keyframes ssxLiveBlink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.42;
  }
}

/* =========================================================
   PLAYER EQUALIZER / PROGRESS / GLOW
========================================================= */

.ssx-equalizer {
  height: 40px;
  margin: 18px auto 10px;

  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
}

.ssx-equalizer span {
  width: 7px;
  height: 14px;
  border-radius: var(--radius-pill);

  background: linear-gradient(180deg, var(--cyan), var(--pink));

  box-shadow:
    0 0 10px rgba(0,247,255,0.8),
    0 0 20px rgba(255,56,248,0.4);

  animation: ssxEqualizer 1s ease-in-out infinite;
}

.ssx-equalizer span:nth-child(2) { animation-delay: 0.1s; }
.ssx-equalizer span:nth-child(3) { animation-delay: 0.2s; }
.ssx-equalizer span:nth-child(4) { animation-delay: 0.3s; }
.ssx-equalizer span:nth-child(5) { animation-delay: 0.4s; }
.ssx-equalizer span:nth-child(6) { animation-delay: 0.5s; }

body:not(.ssx-playing) .ssx-equalizer span {
  animation-play-state: paused;
  opacity: 0.35;
}

@keyframes ssxEqualizer {
  0%,
  100% {
    height: 12px;
    opacity: 0.6;
  }

  50% {
    height: 38px;
    opacity: 1;
  }
}

.ssx-progress-glow {
  width: min(520px, 90%);
  height: 8px;
  margin: 18px auto 10px;

  border-radius: var(--radius-pill);
  overflow: hidden;

  border: 1px solid rgba(0,247,255,0.25);
  background: rgba(255,255,255,0.08);

  box-shadow:
    inset 0 0 12px rgba(0,247,255,0.2),
    0 0 12px rgba(0,247,255,0.15);
}

#ssxProgressBar {
  width: 0%;
  height: 100%;

  border-radius: inherit;

  background: linear-gradient(90deg, var(--cyan), var(--pink), var(--cyan));

  box-shadow:
    0 0 12px rgba(0,247,255,0.8),
    0 0 20px rgba(255,56,248,0.4);

  transition: width 0.25s linear;
}

.player-shell {
  animation: ssxPlayerGlow 4s ease-in-out infinite;
}

@keyframes ssxPlayerGlow {
  0%,
  100% {
    box-shadow:
      0 0 30px rgba(0,247,255,0.2),
      inset 0 0 20px rgba(255,255,255,0.05);
  }

  50% {
    box-shadow:
      0 0 60px rgba(0,247,255,0.35),
      0 0 80px rgba(255,56,248,0.2),
      inset 0 0 28px rgba(255,255,255,0.08);
  }
}

/* =========================================================
   SO SMOOTH X — 16:9 PLAYER FINAL (NO CONTAINER VERSION)
========================================================= */

.ssx-media-stage {
  width: min(100%, 980px);
  aspect-ratio: 16 / 9;
  margin: 22px auto 12px;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
}

/* album art */
.ssx-stage-art {
  width: min(30%, 285px);
  left: 7%;
  top: 46%;
}

/* metadata */
.ssx-stage-overlay {
  right: 7%;
  top: 38%;
  width: 48%;
  text-align: center;
}

.ssx-stage-overlay .now-playing-title {
  font-size: clamp(1.8rem, 3.4vw, 3.2rem);
  margin: 10px 0 6px;
}

.ssx-stage-overlay .now-playing-meta {
  font-size: 0.95rem;
  margin: 4px 0;
}

/* =========================================================
   🔥 BUTTONS — CLEAN ROW (NO CONTAINER)
========================================================= */

.ssx-stage-controls {
  position: absolute;
  left: 50%;
  bottom: 25px;
  transform: translateX(-50%);
  width: min(92%, 820px);
  z-index: 10;

   display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  flex-wrap: nowrap;

  background: none;
  border: none;
  backdrop-filter: none;
  padding: 0;
}

/* buttons = sleeker */
.ssx-stage-controls .button-glow,
.ssx-stage-controls .play-btn-glow,
.ssx-stage-controls .live-btn {
  padding: 8px 12px;
  font-size: 0.63rem;
  border-radius: 999px;
  white-space: nowrap;

  box-shadow:
    0 0 12px rgba(0, 247, 255, 0.35),
    0 0 22px rgba(255, 0, 200, 0.18);
}

/* secondary buttons slightly smaller */
.ssx-stage-controls #shareBtn,
.ssx-stage-controls #favoriteCurrentTrackBtn,
.ssx-stage-controls #skipBtn {
  padding: 8px 11px;
  font-size: 0.62rem;
}

/* =========================================================
   🔥 VOLUME — DIRECTLY UNDER BUTTON ROW
========================================================= */

.ssx-stage-volume {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  width: min(70%, 520px);
  z-index: 10;

  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
}

.ssx-stage-volume label {
  font-size: 0.72rem;
  opacity: 0.8;

  transform: translateY(10px); /* 👈 moves text DOWN */
}

/* =========================================================
   STATUS — CLEAN + MINIMAL
========================================================= */

.ssx-stage-status {
  position: absolute;
  left: 50%;
  bottom: 100px;
  transform: translateX(-50%);
  width: 80%;
  text-align: center;
  z-index: 9;
  font-size: 0.8rem;
  opacity: 0.7;
}

/* progress */
.ssx-progress-shell {
  bottom: 0;
  height: 6px;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {
  .ssx-stage-art {
    width: 34%;
    left: 5%;
    top: 40%;
  }

  .ssx-stage-overlay {
    right: 5%;
    top: 32%;
    width: 50%;
  }

  .ssx-stage-overlay .now-playing-title {
    font-size: clamp(1.25rem, 6vw, 2rem);
  }

  .ssx-stage-overlay .now-playing-meta {
    font-size: 0.76rem;
  }

  .ssx-stage-controls {
    bottom: 52px;
    gap: 6px;
    flex-wrap: wrap; /* 🔥 allow wrap on mobile only */
  }

  .ssx-stage-controls .button-glow,
  .ssx-stage-controls .play-btn-glow,
  .ssx-stage-controls .live-btn {
    padding: 8px 10px;
    font-size: 0.62rem;
  }

  .ssx-stage-volume {
    bottom: 18px;
    width: 82%;
  }

  .ssx-stage-status {
    display: none;
  }
}
/* =========================================================
   AUTH MODAL — CLEAN BASE
========================================================= */

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;

  display: none;
  align-items: flex-start;
  justify-content: center;

  padding: 82px 24px 24px;

  background:
    radial-gradient(circle at 50% 10%, rgba(0,247,255,0.18), transparent 34%),
    radial-gradient(circle at 50% 90%, rgba(255,56,248,0.14), transparent 36%),
    rgba(0, 0, 0, 0.84);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.auth-modal.show {
  display: flex;
}

.auth-card {
  position: relative;

  width: min(94vw, 560px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;

  padding: 34px 26px;
  border-radius: 28px;

  text-align: center;

  border: 1px solid rgba(0, 247, 255, 0.38);

  background:
    radial-gradient(circle at top, rgba(0,247,255,0.18), transparent 38%),
    rgba(0,0,0,0.92);

  box-shadow:
    0 0 34px rgba(0,247,255,0.32),
    0 0 70px rgba(255,56,248,0.22),
    inset 0 0 24px rgba(0,247,255,0.08);
}

.auth-logo {
  width: min(150px, 42vw);
  height: auto;
  margin: 0 auto 18px;

  filter:
    drop-shadow(0 0 18px rgba(0,247,255,0.85))
    drop-shadow(0 0 26px rgba(255,56,248,0.34));
}

.auth-close {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 5;

  width: 38px;
  height: 38px;
  border-radius: 50%;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(0,247,255,0.4);
  background: rgba(0,0,0,0.75);
  color: #fff;

  font-size: 1.45rem;
  line-height: 1;

  cursor: pointer;

  box-shadow: 0 0 18px rgba(0,247,255,0.18);

  transition:
    transform var(--speed),
    border-color var(--speed),
    box-shadow var(--speed),
    color var(--speed);
}

.auth-close:hover {
  transform: scale(1.05);
  border-color: rgba(255,56,248,0.58);
  color: var(--cyan);

  box-shadow:
    0 0 16px rgba(0,247,255,0.55),
    0 0 28px rgba(255,56,248,0.24);
}

.auth-card input {
  text-align: center;
}

.auth-card .player-controls {
  width: 100%;
  margin: 16px auto 0;
}

.auth-card .button-glow {
  min-height: 46px;
}

/* =========================================================
   USER STATUS PANEL — DESKTOP + MOBILE DROPDOWN FIX
========================================================= */

.user-status-panel {
  position: fixed;
  top: 192px;
  right: 20px;
  z-index: 9999;

  width: min(240px, calc(100vw - 32px));
  padding: 14px;
  border-radius: 18px;

  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;

  background:
    radial-gradient(circle at top, rgba(0,247,255,0.14), transparent 42%),
    rgba(0,0,0,0.92);

  border: 1px solid rgba(0,247,255,0.34);

  box-shadow:
    0 0 18px rgba(0,247,255,0.25),
    0 0 42px rgba(255,56,248,0.14);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.user-status-panel .glow-text {
  margin: 0;
  max-width: 100%;
  color: #9ffcff;
  font-size: 0.8rem;
  line-height: 1.35;
  text-align: right;
  overflow-wrap: anywhere;
  text-shadow: 0 0 8px rgba(0,247,255,0.8);
}

.user-status-panel .tier-text {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;

  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
}

.user-status-panel.premium .tier-text {
  color: var(--gold);
  text-shadow: 0 0 10px rgba(255,215,0,0.85);
}

.user-status-panel a,
.user-status-panel button {
  width: 100%;
  min-height: 38px;
  padding: 8px 12px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  border-radius: 999px;
  border: 1px solid rgba(0,247,255,0.3);

  background: rgba(0,0,0,0.75);
  color: #fff;

  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;

  box-shadow: 0 0 12px rgba(0,247,255,0.16);
  cursor: pointer;
}

.user-status-panel a:hover,
.user-status-panel button:hover {
  background: rgba(0,247,255,0.14);
  box-shadow: 0 0 16px rgba(0,247,255,0.55);
}

/* =========================================================
   SO SMOOTH X — WEBSITE PROFILE ICON + DROPDOWN SYSTEM
   DESKTOP + WEBSITE ONLY
   (Does NOT affect iOS/iPad app profile system)
========================================================= */

@media (min-width: 1367px) {

  /* =====================================================
     MAIN PROFILE ICON CONTAINER
  ===================================================== */

  #userStatusArea.user-status-panel {
    position: fixed !important;

    top: 112px !important;
    right: 26px !important;

    width: 78px !important;
    height: 78px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    overflow: visible !important;

    z-index: 2147483647 !important;

    background: transparent !important;
    border: none !important;
    box-shadow: none !important;

    pointer-events: auto !important;
    cursor: pointer !important;
  }

  /* =====================================================
     PROFILE ICON
  ===================================================== */

  #userStatusArea.user-status-panel::before {
    content: "\f007";

    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;

    width: 78px !important;
    height: 78px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 50% !important;

    color: #ffffff !important;
    font-size: 1.9rem !important;

    background:
      radial-gradient(
        circle at top,
        rgba(255,255,255,0.18),
        rgba(255,255,255,0.03)
      ),
      rgba(0,0,0,0.92) !important;

    border: 2px solid rgba(0,247,255,0.82) !important;

    box-shadow:
      0 0 24px rgba(0,247,255,0.72),
      0 0 58px rgba(255,0,255,0.22),
      0 10px 40px rgba(0,0,0,0.55) !important;

    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease,
      border-color 0.25s ease !important;
  }

  /* =====================================================
     HOVER EFFECT
  ===================================================== */

  #userStatusArea.user-status-panel:hover::before {
    transform: scale(1.06);

    border-color: rgba(255,215,106,0.92) !important;

    box-shadow:
      0 0 28px rgba(255,215,106,0.55),
      0 0 62px rgba(255,0,255,0.25),
      0 12px 42px rgba(0,0,0,0.6) !important;
  }

  /* =====================================================
     OPEN STATE
  ===================================================== */

  #userStatusArea.user-status-panel.open::before,
  #userStatusArea.user-status-panel.active::before,
  body.profile-open #userStatusArea.user-status-panel::before {
    content: "\f00d";
    color: #ffd76a !important;
  }

  /* =====================================================
     DROPDOWN PANEL
  ===================================================== */

  #userStatusArea.user-status-panel .user-mini-card {
    position: absolute !important;

    top: 96px !important;
    right: 0 !important;

    width: 380px !important;
    min-width: 380px !important;
    max-width: 380px !important;

    padding: 28px 24px !important;

    border-radius: 30px !important;

    display: none !important;

    background:
      linear-gradient(
        180deg,
        rgba(255,255,255,0.12),
        rgba(255,255,255,0.035)
      ),
      rgba(0,8,14,0.975) !important;

    border: 1px solid rgba(0,247,255,0.42) !important;

    box-shadow:
      0 0 36px rgba(0,247,255,0.42),
      0 0 72px rgba(255,0,255,0.22),
      0 26px 80px rgba(0,0,0,0.75) !important;

    backdrop-filter: blur(18px) saturate(1.2) !important;
    -webkit-backdrop-filter: blur(18px) saturate(1.2) !important;

    animation: ssxProfileFadeIn 0.22s ease !important;
  }

  /* =====================================================
     SHOW PANEL
  ===================================================== */

  #userStatusArea.user-status-panel.open .user-mini-card,
  #userStatusArea.user-status-panel.active .user-mini-card,
  body.profile-open #userStatusArea.user-status-panel .user-mini-card {
    display: block !important;
  }

  /* =====================================================
     INPUTS
  ===================================================== */

  #userStatusArea input,
  #userStatusArea .vip-code-input {
    width: 100% !important;
    min-height: 58px !important;

    border-radius: 18px !important;

    text-align: center !important;

    margin-top: 12px !important;
    margin-bottom: 16px !important;
  }

  /* =====================================================
     BUTTONS
  ===================================================== */

  #userStatusArea button,
  #userStatusArea .premium-btn,
  #userStatusArea .restore-btn,
  #userStatusArea .upgrade-btn {
    width: 100% !important;
    min-height: 58px !important;

    border-radius: 18px !important;

    margin-top: 12px !important;
  }

  /* =====================================================
     REMOVE OLD MOBILE TOGGLE SYSTEM
  ===================================================== */

  .mobile-profile-toggle,
  .profile-toggle-btn {
    display: none !important;
  }

  /* =====================================================
     ANIMATION
  ===================================================== */

  @keyframes ssxProfileFadeIn {
    from {
      opacity: 0;
      transform: translateY(-10px) scale(0.96);
    }

    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }
}
/* =========================================================
   MOBILE POLISH
========================================================= */

@media (max-width: 760px) {
  .listen-main-cta {
    top: auto;
    right: 14px;
    bottom: 18px;

    min-height: 44px;
    padding: 11px 17px;

    font-size: 0.68rem;
    letter-spacing: 0.06em;

    box-shadow:
      0 0 18px rgba(0,247,255,0.7),
      0 0 34px rgba(255,56,248,0.42);
  }

  .ssx-equalizer {
    height: 32px;
  }

  .ssx-equalizer span {
    width: 5px;
  }

  .ssx-progress-glow {
    width: 92%;
  }

  .user-status-panel {
    position: static;
    width: min(420px, calc(100% - 28px));
    max-width: none;

    margin: 12px auto 18px;

    align-items: center;
    text-align: center;
  }

  .user-status-panel .glow-text,
  .user-status-panel .tier-text {
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .auth-modal {
    align-items: flex-start;
    padding: 22px 12px;
    overflow-y: auto;
  }

  .auth-card {
    width: 100%;
    max-height: calc(100vh - 44px);
    padding: 28px 16px 18px;
    border-radius: 22px;
  }

  .auth-logo {
    width: 104px;
    margin-bottom: 12px;
  }

  .auth-close {
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    font-size: 1.25rem;
  }

  .auth-card .button-glow {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
/* =========================================================
   PART 5 — UPGRADE MODAL • PLAYER WAVE FX • PREMIUM LIBRARY • AUTH REFINEMENTS
========================================================= */

/* ===============================
   PREMIUM UPGRADE MODAL
================================ */

.upgrade-modal {
  position: fixed;
  inset: 0;
  z-index: 9999999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 24px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  background:
    radial-gradient(circle at 20% 20%, rgba(0,247,255,0.22), transparent 32%),
    radial-gradient(circle at 80% 80%, rgba(255,56,248,0.18), transparent 34%),
    rgba(0,0,0,0.9);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.upgrade-modal.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.upgrade-box {
  position: relative;
  z-index: 2;
  overflow: hidden;

  width: min(94vw, 540px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;

  padding: 42px 28px 30px;
  border-radius: 28px;
  border: 1px solid rgba(0,247,255,0.5);

  text-align: center;

  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    #050508;

  box-shadow:
    0 0 32px rgba(0,247,255,0.42),
    0 0 70px rgba(255,56,248,0.25),
    inset 0 0 28px rgba(0,247,255,0.08);

  animation: ssxUpgradePop 0.38s ease both;
}

.upgrade-box > * {
  position: relative;
  z-index: 2;
}

.upgrade-box::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;

  background:
    radial-gradient(circle at top, rgba(0,247,255,0.18), transparent 42%),
    radial-gradient(circle at bottom right, rgba(255,56,248,0.14), transparent 42%);

  pointer-events: none;
}

.upgrade-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  z-index: 1;

  width: 80%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.16),
    transparent
  );

  transform: skewX(-18deg);
  animation: ssxUpgradeSweep 4.5s ease-in-out infinite;
  pointer-events: none;
}

.upgrade-box h2 {
  margin: 8px auto 14px;

  color: #fff;

  font-family: var(--font-display);
  font-size: clamp(1.7rem, 5vw, 2.5rem);
  line-height: 1.08;
  text-transform: uppercase;

  text-shadow:
    0 0 14px rgba(0,247,255,0.9),
    0 0 34px rgba(255,56,248,0.45);
}

.upgrade-box p {
  max-width: 440px;
  margin: 0 auto 18px;

  color: rgba(230,250,255,0.92);
  line-height: 1.75;
}

.upgrade-box strong {
  color: var(--cyan);
  text-shadow: 0 0 10px rgba(0,247,255,0.85);
}

.upgrade-price {
  margin: 14px auto 16px;

  color: #9ffcff;

  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;

  text-shadow: 0 0 10px rgba(0,247,255,0.55);
}

.paypal-wrapper {
  width: fit-content;
  max-width: 100%;

  margin: 22px auto 14px;
  padding: 16px 20px;

  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);

  background:
    radial-gradient(circle at top, rgba(0,247,255,0.12), transparent 40%),
    rgba(255,255,255,0.05);

  box-shadow:
    inset 0 0 18px rgba(0,247,255,0.08),
    0 0 24px rgba(0,247,255,0.16);
}

.paypal-wrapper form {
  margin: 0;
}

.paypal-wrapper input[type="image"] {
  display: block;
  max-width: 100%;
  height: auto;

  filter:
    drop-shadow(0 0 10px rgba(0,247,255,0.45))
    drop-shadow(0 0 18px rgba(255,56,248,0.24));

  transition:
    transform var(--speed),
    filter var(--speed);
}

.paypal-wrapper input[type="image"]:hover {
  transform: translateY(-3px) scale(1.04);

  filter:
    drop-shadow(0 0 16px rgba(0,247,255,0.8))
    drop-shadow(0 0 28px rgba(255,56,248,0.5));
}

#closeUpgradeModalAlt {
  padding: 10px 18px;

  border-radius: var(--radius-pill);
  border: 1px solid rgba(0,247,255,0.35);

  color: #fff;
  background: rgba(0,0,0,0.72);

  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  cursor: pointer;

  transition:
    border-color var(--speed),
    color var(--speed),
    box-shadow var(--speed),
    transform var(--speed);
}

#closeUpgradeModalAlt:hover {
  transform: translateY(-2px);
  border-color: rgba(255,56,248,0.55);
  color: var(--cyan);

  box-shadow:
    0 0 16px rgba(0,247,255,0.55),
    0 0 28px rgba(255,56,248,0.24);
}

@keyframes ssxUpgradePop {
  from {
    transform: scale(0.88) translateY(18px);
    opacity: 0;
  }

  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

@keyframes ssxUpgradeSweep {
  0%,
  38% {
    left: -120%;
    opacity: 0;
  }

  52% {
    opacity: 1;
  }

  80%,
  100% {
    left: 135%;
    opacity: 0;
  }
}

/* ===============================
   PLAYER SOUND WAVE + ORBIT FX
================================ */

.ssx-wave-wrap {
  width: min(360px, 90%);
  height: 58px;
  margin: 18px auto 10px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.ssx-wave-wrap span {
  width: 7px;
  height: 18px;

  border-radius: var(--radius-pill);

  background: linear-gradient(180deg, var(--cyan), var(--pink));

  box-shadow:
    0 0 12px rgba(0,247,255,0.8),
    0 0 20px rgba(255,56,248,0.55);

  opacity: 0.9;
  animation: ssxWave 1.05s ease-in-out infinite;
}

.ssx-wave-wrap span:nth-child(2) { animation-delay: 0.08s; }
.ssx-wave-wrap span:nth-child(3) { animation-delay: 0.16s; }
.ssx-wave-wrap span:nth-child(4) { animation-delay: 0.24s; }
.ssx-wave-wrap span:nth-child(5) { animation-delay: 0.32s; }
.ssx-wave-wrap span:nth-child(6) { animation-delay: 0.4s; }
.ssx-wave-wrap span:nth-child(7) { animation-delay: 0.32s; }
.ssx-wave-wrap span:nth-child(8) { animation-delay: 0.24s; }
.ssx-wave-wrap span:nth-child(9) { animation-delay: 0.16s; }
.ssx-wave-wrap span:nth-child(10) { animation-delay: 0.08s; }

body:not(.ssx-playing) .ssx-wave-wrap span {
  height: 14px;
  opacity: 0.35;
  animation-play-state: paused;
}

@keyframes ssxWave {
  0%,
  100% {
    height: 14px;
    transform: scaleY(0.75);
    opacity: 0.55;
  }

  50% {
    height: 52px;
    transform: scaleY(1.2);
    opacity: 1;
  }
}

.ssx-orbit-glow {
  width: 210px;
  height: 210px;
  margin: -150px auto 0;

  border-radius: 50%;
  border: 1px solid rgba(0,247,255,0.28);

  box-shadow:
    0 0 28px rgba(0,247,255,0.45),
    inset 0 0 30px rgba(255,56,248,0.26);

  opacity: 0.35;
  pointer-events: none;

  animation: ssxOrbitPulse 3.8s ease-in-out infinite;
}

@keyframes ssxOrbitPulse {
  0%,
  100% {
    transform: scale(0.9) rotate(0deg);
    opacity: 0.22;
  }

  50% {
    transform: scale(1.08) rotate(180deg);
    opacity: 0.5;
  }
}

/* ===============================
   PREMIUM LIBRARY / PLAYLIST
================================ */

#formSuccess {
  transition: opacity 0.3s ease;
}

.premium-library-controls,
.premium-playlist-box,
.premium-library-box {
  margin-top: 24px;
}

.playlist-input {
  display: block;

  width: min(100%, 520px);
  min-height: 50px;
  margin: 16px auto;
  padding: 15px 18px;

  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 247, 255, 0.35);

  background: rgba(0, 0, 0, 0.72);
  color: #fff;

  text-align: center;
  outline: none;

  box-shadow:
    inset 0 0 18px rgba(0, 247, 255, 0.12),
    0 0 22px rgba(0, 247, 255, 0.16);

  transition:
    border-color var(--speed),
    box-shadow var(--speed);
}

.playlist-input:focus {
  border-color: rgba(255, 56, 248, 0.75);

  box-shadow:
    0 0 22px rgba(255, 56, 248, 0.35),
    inset 0 0 20px rgba(0, 247, 255, 0.2);
}

/* ===============================
   AUTH MODAL REFINEMENTS
================================ */

.auth-card .section-badge {
  margin: 0 auto 14px;
}

.auth-card .section-title {
  margin: 10px auto 14px;

  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.03;
  text-align: center;
}

.auth-card .section-subtitle {
  max-width: 330px;
  margin: 0 auto 18px;

  font-size: 0.96rem;
  line-height: 1.65;
}

.auth-card input {
  width: 100%;
  min-height: 48px;

  display: block;
  margin: 10px auto 0;
  padding: 14px 16px;

  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 247, 255, 0.42);

  background:
    linear-gradient(180deg, rgba(0, 247, 255, 0.08), rgba(0, 0, 0, 0.75)),
    rgba(0, 0, 0, 0.78);

  color: #ffffff;

  font-size: 0.95rem;
  text-align: center;

  outline: none;

  box-shadow:
    inset 0 0 16px rgba(0, 247, 255, 0.14),
    0 0 16px rgba(0, 247, 255, 0.16);

  transition:
    border-color var(--speed),
    box-shadow var(--speed);
}

.auth-card input::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.auth-card input:focus {
  border-color: rgba(255, 56, 248, 0.8);

  box-shadow:
    0 0 22px rgba(255, 56, 248, 0.38),
    inset 0 0 18px rgba(0, 247, 255, 0.22);
}

.auth-card .player-controls {
  margin-top: 14px;
  gap: 10px;
  flex-wrap: wrap;
}

.auth-card .button-glow {
  min-height: 44px;
  padding: 12px 18px;
}

#googleSignInBtn {
  width: 100%;
  margin-top: 12px;
}

#authMessage {
  min-height: 20px;
  margin-top: 12px;
}

.auth-card::-webkit-scrollbar,
.upgrade-box::-webkit-scrollbar {
  width: 6px;
}

.auth-card::-webkit-scrollbar-thumb,
.upgrade-box::-webkit-scrollbar-thumb {
  border-radius: var(--radius-pill);
  background: rgba(0, 247, 255, 0.45);
}

/* ===============================
   MOBILE POLISH
================================ */

@media (max-width: 520px) {
  .upgrade-modal {
    align-items: flex-start;
    padding: 22px 12px;
    overflow-y: auto;
  }

  .upgrade-box {
    width: 100%;
    max-height: calc(100vh - 44px);
    padding: 40px 18px 24px;
    border-radius: 22px;
  }

  .paypal-wrapper {
    width: 100%;
    padding: 14px;
  }

  .paypal-wrapper input[type="image"] {
    margin: 0 auto;
  }

  .ssx-wave-wrap {
    height: 44px;
    gap: 5px;
  }

  .ssx-wave-wrap span {
    width: 5px;
  }

  .ssx-orbit-glow {
    width: 170px;
    height: 170px;
    margin-top: -120px;
  }

  .auth-card .section-title {
    font-size: 2rem;
  }

  .auth-card .section-subtitle {
    font-size: 0.9rem;
  }

  .auth-card .button-glow {
    width: 100%;
  }
}
/* =========================================================
   PART 6 — FINAL UTILITIES • PREMIUM CONTROLS • VIDEO • RATING • POPUPS • VIP • PRICING OVERRIDES
========================================================= */

/* SPA LOADER */
.spa-loader {
  position: fixed;
  inset: 0;
  z-index: 999999;

  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;

  background: rgba(0,0,0,0.9);
  color: #fff;
  text-align: center;

  backdrop-filter: blur(14px);
}

.spa-loader.is-active {
  display: flex;
}

/* Keep old close button hidden if JS injects it */
#authCloseBtn {
  display: none !important;
}

/* ===============================
   SKIP BUTTON — PREMIUM STYLE
================================ */

.skip-btn {
  position: relative;
  overflow: hidden;
}

.skip-btn::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.25),
    transparent
  );

  transform: translateX(-100%);
  transition: transform 0.5s ease;
  pointer-events: none;
}

.skip-btn:hover::after {
  transform: translateX(100%);
}

.skip-btn:hover {
  box-shadow:
    0 0 28px rgba(0,247,255,0.9),
    0 0 50px rgba(255,56,248,0.6);
}

.skip-btn:not(.premium-active) {
  opacity: 0.5;
  cursor: not-allowed;
  filter: grayscale(0.5);
}

.skip-btn.premium-active,
.skip-btn.mode-on,
.button-glow.mode-on {
  position: relative;
}

.skip-btn.premium-active::before,
.button-glow.mode-on::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 10px;

  width: 9px;
  height: 9px;
  border-radius: 50%;

  background: var(--red);
  box-shadow:
    0 0 10px var(--red),
    0 0 20px rgba(255, 45, 85, 0.8);

  animation: ssxRedPulse 1s infinite ease-in-out;
}

@keyframes ssxRedPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.75;
  }

  50% {
    transform: scale(1.35);
    opacity: 1;
  }
}

/* ===============================
   VIDEO SECTION — JAZMINE
================================ */

.video-section {
  width: 100%;
  margin-top: 60px;
  padding: 0 20px;
}

.video-card {
  width: min(1000px, 100%);
  margin: 0 auto;
  text-align: center;
}

.video-wrapper {
  position: relative;

  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 20px;

  border-radius: 18px;
  overflow: hidden;

  border: 1px solid rgba(0,247,255,0.22);

  background: #000;

  box-shadow:
    0 0 40px rgba(0, 247, 255, 0.15),
    0 0 80px rgba(255, 56, 248, 0.1);
}

.jazmine-video,
.video-wrapper video,
.video-wrapper iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

/* ===============================
   RATING SYSTEM
================================ */

.rating-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.rating-select {
  min-height: 44px;
  padding: 0 14px;

  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 247, 255, 0.45);

  background: rgba(0, 0, 0, 0.82);
  color: #fff;

  font-family: inherit;

  box-shadow:
    0 0 16px rgba(0, 247, 255, 0.25),
    inset 0 0 14px rgba(255, 56, 248, 0.08);
}

.rating-wrap.active-glow {
  animation: ssxRatingPulse 0.9s ease;
}

.rating-wrap.active-glow .button-glow,
.rating-wrap.active-glow .rating-select {
  box-shadow:
    0 0 25px rgba(0, 247, 255, 0.9),
    0 0 45px rgba(255, 56, 248, 0.6),
    inset 0 0 20px rgba(255, 255, 255, 0.2);
}

@keyframes ssxRatingPulse {
  0% {
    transform: scale(1);
  }

  40% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

.star-rating {
  display: none;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}

.star-rating span {
  color: rgba(255,255,255,0.25);
  font-size: 1.8rem;
  cursor: pointer;

  transition:
    color var(--speed),
    transform var(--speed),
    text-shadow var(--speed);
}

.star-rating span:hover {
  color: var(--cyan);
  transform: scale(1.08);
}

.star-rating span.active,
.star-rating span.saved {
  color: var(--gold);
  text-shadow:
    0 0 10px rgba(255, 215, 0, 0.8),
    0 0 20px rgba(255, 56, 248, 0.5);
}

.star-rating span.filled {
  animation: ssxStarFill 0.35s ease;
}

@keyframes ssxStarFill {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  60% {
    transform: scale(1.3);
    opacity: 1;
  }

  100% {
    transform: scale(1);
  }
}

#rateSongBtn.rated {
  box-shadow:
    0 0 22px rgba(255, 215, 0, 0.65),
    0 0 45px rgba(255, 56, 248, 0.35);
}

/* ===============================
   INPUT GLOW
================================ */

.input-glow {
  width: 100%;
  min-width: min(340px, 100%);
  min-height: 48px;
  padding: 0 18px;

  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 247, 255, 0.45);

  background: rgba(0, 0, 0, 0.82);
  color: #fff;

  font-family: inherit;
  outline: none;

  box-shadow:
    0 0 16px rgba(0, 247, 255, 0.25),
    inset 0 0 14px rgba(255, 56, 248, 0.08);

  transition:
    border-color var(--speed),
    box-shadow var(--speed);
}

.input-glow:focus {
  border-color: rgba(255, 56, 248, 0.75);

  box-shadow:
    0 0 22px rgba(255, 56, 248, 0.35),
    inset 0 0 18px rgba(0, 247, 255, 0.16);
}

/* ===============================
   SUBSCRIBE POPUP
================================ */

.subscribe-popup {
  position: fixed;
  inset: 0;
  z-index: 999999;

  display: none;
  align-items: center;
  justify-content: center;

  padding: 22px;

  background: rgba(0, 0, 0, 0.84);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.subscribe-popup.show {
  display: flex;
}

.subscribe-popup-box {
  width: min(520px, 100%);
  padding: 34px 24px;

  border-radius: 22px;
  border: 1px solid rgba(0,247,255,0.35);

  text-align: center;

  background:
    radial-gradient(circle at top, rgba(0,247,255,0.2), transparent 45%),
    rgba(0, 0, 0, 0.92);

  box-shadow:
    0 0 35px rgba(0,247,255,0.35),
    0 0 80px rgba(255,56,248,0.2);
}

.subscribe-popup-box h2 {
  margin-bottom: 12px;
  color: var(--cyan);
}

.subscribe-popup-box p {
  margin-bottom: 22px;
  color: #d7f7ff;
  line-height: 1.7;
}

/* ===============================
   SHARE BUTTON
================================ */

.share-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.share-btn i {
  filter: drop-shadow(0 0 8px rgba(0, 247, 255, 0.8));
}

.share-btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(0, 247, 255, 0.45),
    rgba(255, 56, 248, 0.35),
    transparent
  );

  transform: translateX(-120%);
  transition: transform 0.75s ease;
}

.share-btn:hover::before {
  transform: translateX(120%);
}

.share-btn::after {
  content: "Share the Vibe";

  position: absolute;
  top: -14px;
  right: -10px;

  padding: 4px 9px;
  border-radius: var(--radius-pill);

  color: #001014;
  background: linear-gradient(135deg, var(--cyan), var(--pink));

  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  opacity: 0;
  transform: translateY(6px) scale(0.92);

  pointer-events: none;

  box-shadow:
    0 0 14px rgba(0, 247, 255, 0.55),
    0 0 24px rgba(255, 56, 248, 0.35);

  transition:
    opacity var(--speed),
    transform var(--speed);
}

.share-btn:hover::after {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.share-btn:active {
  transform: scale(0.96);
}

.share-btn.copied,
.share-btn.shared {
  animation: ssxSharePulse 0.9s ease;
}

@keyframes ssxSharePulse {
  0%,
  100% {
    box-shadow:
      0 0 18px rgba(0, 247, 255, 0.35),
      0 0 32px rgba(255, 56, 248, 0.2);
  }

  50% {
    box-shadow:
      0 0 34px rgba(0, 247, 255, 0.95),
      0 0 64px rgba(255, 56, 248, 0.55);
  }
}

/* ===============================
   VIP REDEEM
================================ */

.vip-redeem-wrap {
  width: min(520px, 100%);
  margin: 14px auto 0;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.vip-input {
  flex: 1 1 auto;
  min-width: 0;
}

.vip-btn {
  flex: 0 0 auto;
  white-space: nowrap;
}

/* =========================================
   PRICING — FINAL BALANCED OVERRIDE
========================================= */

.pricing-grid {
  width: 100%;
  max-width: 820px;
  margin: 50px auto;

  display: flex !important;
  justify-content: center;
  align-items: stretch;
  gap: 34px;
}

.pricing-grid .pricing-card {
  flex: 1 1 0;
  max-width: 380px;

  width: 100% !important;
  height: auto;
  min-height: 0;
  margin: 0 !important;
  padding: 30px 24px;

  display: flex;
  flex-direction: column;
}

.pricing-card .plan-list {
  flex-grow: 1;
}

.pricing-card .button-glow,
.pricing-card .plan-btn,
.pricing-card form,
.pricing-card .paypal-wrapper {
  margin-top: auto;
}

.pricing-card p {
  margin-bottom: 10px;
}

.pricing-card li {
  margin: 6px 0;
}

/* Optional premium-card lift on desktop only */
@media (min-width: 769px) {
  .pricing-grid .pricing-card:nth-child(2) {
    transform: translateY(14px);
  }
}

/* ===============================
   MOBILE FINAL POLISH
================================ */

@media (max-width: 768px) {
  .video-section {
    margin-top: 42px;
    padding: 0 14px;
  }

  .rating-wrap {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .rating-select {
    width: 100%;
  }

  .share-btn {
    width: 100%;
  }

  .share-btn::after {
    display: none;
  }

  .vip-redeem-wrap {
    flex-direction: column;
    align-items: stretch;
  }

  .vip-btn {
    width: 100%;
  }

  .pricing-grid {
    max-width: 420px;
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }

  .pricing-grid .pricing-card {
    max-width: 100%;
    transform: none !important;
  }
}
/* =========================================================
   NEW HOST SECTION — CLEAN 2x2 SUPREME GRID
========================================================= */

.new-host-section {
  width: 100%;
  padding: clamp(70px, 9vw, 105px) 18px;
}

.new-host-section .content-card {
  width: min(1040px, calc(100% - 28px));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 52px);
  text-align: center;
}

/* GRID */
.new-host-grid {
  width: min(860px, 100%);
  margin: 38px auto 0;

  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 24px;
}

/* CARD */
.new-host-card {
  min-height: 300px;
  padding: 28px 22px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  border-radius: 24px;
  border: 1px solid rgba(0, 247, 255, 0.28);

  background:
    radial-gradient(circle at top, rgba(0,247,255,0.10), transparent 42%),
    linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015)),
    rgba(0,0,0,0.72);

  box-shadow:
    0 0 22px rgba(0,247,255,0.18),
    0 0 46px rgba(255,56,248,0.10),
    inset 0 0 22px rgba(0,247,255,0.06);

  text-align: center;
  transition: 0.3s ease;
}

.new-host-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255,56,248,0.45);
  box-shadow:
    0 0 34px rgba(0,247,255,0.35),
    0 0 70px rgba(255,56,248,0.22);
}

/* IMAGE */
.new-host-card img {
  width: 118px;
  height: 118px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 16px;

  border: 2px solid var(--cyan);
  box-shadow:
    0 0 18px rgba(0,247,255,0.7),
    0 0 36px rgba(255,56,248,0.28);
}

/* BADGE */
.new-host-card .section-badge {
  margin: 0 auto 14px;
  font-size: 0.68rem;
  padding: 7px 14px;
}

/* TITLE */
.new-host-card h3 {
  margin: 0 auto 10px;

  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: #fff;
  text-shadow: 0 0 12px rgba(0,247,255,0.65);
}

/* TEXT */
.new-host-card p {
  max-width: 260px;
  margin: 0 auto;

  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ice);
}

/* MOBILE */
@media (max-width: 760px) {
  .new-host-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .new-host-card {
    min-height: auto;
  }
}

/* =========================================================
   NEW PRICING SECTION — FINAL CLEAN SYSTEM
========================================================= */

section.new-pricing-section {
  width: 100% !important;
  padding: clamp(70px, 9vw, 110px) 18px !important;
  position: relative !important;
  z-index: 2 !important;
}

section.new-pricing-section .new-pricing-inner {
  width: min(1040px, calc(100% - 28px)) !important;
  margin: 0 auto !important;
  text-align: center !important;
}

section.new-pricing-section .new-pricing-title {
  max-width: 940px !important;
  margin: 0 auto 18px !important;
  font-family: var(--font-display) !important;
  font-size: clamp(2rem, 5vw, 4.25rem) !important;
  line-height: 1.05 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  color: #fff !important;
  text-shadow:
    0 0 14px rgba(255,255,255,0.72),
    0 0 30px rgba(0,247,255,0.68),
    0 0 60px rgba(255,56,248,0.38) !important;
}

section.new-pricing-section .new-pricing-subtitle {
  max-width: 760px !important;
  margin: 0 auto 42px !important;
  color: var(--ice) !important;
  font-size: clamp(1rem, 1.7vw, 1.18rem) !important;
  line-height: 1.75 !important;
}

section.new-pricing-section .new-pricing-grid {
  width: min(920px, 100%) !important;
  margin: 44px auto 0 !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 30px !important;
  align-items: stretch !important;
}

section.new-pricing-section .new-pricing-card {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 540px !important;
  margin: 0 !important;
  padding: 34px 26px !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;

  border-radius: 28px !important;
  border: 1px solid rgba(0,247,255,0.35) !important;

  background:
    radial-gradient(circle at top, rgba(0,247,255,0.16), transparent 42%),
    linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    rgba(0,0,0,0.86) !important;

  box-shadow:
    0 0 30px rgba(0,247,255,0.28),
    0 0 70px rgba(255,56,248,0.16),
    inset 0 0 28px rgba(0,247,255,0.08) !important;

  text-align: center !important;
}

section.new-pricing-section .new-premium-card {
  border-color: rgba(255,215,106,0.6) !important;
  box-shadow:
    0 0 30px rgba(255,215,106,0.28),
    0 0 70px rgba(0,247,255,0.22),
    0 0 90px rgba(255,56,248,0.18) !important;
}

section.new-pricing-section .new-plan-badge {
  width: fit-content !important;
  margin: 0 auto 18px !important;
  padding: 8px 16px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255,215,106,0.5) !important;
  color: var(--gold) !important;
  background: rgba(255,215,106,0.09) !important;
  font-family: var(--font-display) !important;
  font-size: 0.72rem !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
}

section.new-pricing-section .new-pricing-card h3 {
  margin: 0 auto 14px !important;
  min-height: 42px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: var(--font-display) !important;
  font-size: 1.28rem !important;
  line-height: 1.25 !important;
  text-transform: uppercase !important;
  color: #fff !important;
}

section.new-pricing-section .new-price {
  margin: 10px auto 16px !important;
  font-family: var(--font-display) !important;
  font-size: clamp(2.75rem, 4.2vw, 3.6rem) !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  color: var(--gold) !important;
  background: none !important;
  -webkit-text-fill-color: var(--gold) !important;
  text-shadow:
    0 0 14px rgba(255,215,106,0.55),
    0 0 28px rgba(0,247,255,0.28) !important;
}

section.new-pricing-section .new-price span {
  font-size: 0.95rem !important;
  color: var(--ice) !important;
  -webkit-text-fill-color: var(--ice) !important;
}

section.new-pricing-section .new-plan-text {
  max-width: 310px !important;
  min-height: 54px !important;
  margin: 0 auto 18px !important;
  color: var(--ice) !important;
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
}

section.new-pricing-section .new-plan-list {
  flex: 1 1 auto !important;
  width: min(330px, 100%) !important;
  margin: 0 auto 26px !important;
  padding: 0 !important;
  list-style: none !important;
}

section.new-pricing-section .new-plan-list li {
  margin: 9px auto !important;
  padding: 0 !important;
  list-style: none !important;
  color: var(--ice) !important;
  font-size: 0.92rem !important;
  line-height: 1.45 !important;
  text-align: center !important;
}

section.new-pricing-section .new-plan-btn {
  width: min(300px, 100%) !important;
  min-height: 52px !important;
  margin: auto auto 0 !important;
  padding: 14px 24px !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;

  border: 0 !important;
  border-radius: 999px !important;

  color: #031014 !important;
  background: linear-gradient(135deg, var(--cyan), #9fffff, var(--pink)) !important;

  font-family: var(--font-display) !important;
  font-size: 0.82rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;

  box-shadow:
    0 0 18px rgba(0,247,255,0.75),
    0 0 38px rgba(255,56,248,0.4) !important;
}

section.new-pricing-section .new-paypal-wrapper,
section.new-pricing-section .new-paypal-wrapper form {
  width: min(300px, 100%) !important;
  margin: auto auto 0 !important;
  padding: 0 !important;
}

section.new-pricing-section .new-upgrade-btn {
  width: 100% !important;
}

section.new-pricing-section .new-paypal-note {
  max-width: 280px !important;
  margin: 14px auto 0 !important;
  color: var(--muted) !important;
  font-size: 0.85rem !important;
  line-height: 1.5 !important;
  text-align: center !important;
}

/* MOBILE */
@media (max-width: 760px) {
  section.new-pricing-section {
    padding: 60px 14px !important;
  }

  section.new-pricing-section .new-pricing-inner {
    width: min(430px, 100%) !important;
  }

  section.new-pricing-section .new-pricing-title {
    font-size: clamp(2rem, 11vw, 3rem) !important;
  }

  section.new-pricing-section .new-pricing-subtitle {
    max-width: 340px !important;
    margin-bottom: 32px !important;
    font-size: 0.98rem !important;
  }

  section.new-pricing-section .new-pricing-grid {
    width: 100% !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  section.new-pricing-section .new-pricing-card {
    min-height: auto !important;
    padding: 30px 20px !important;
    border-radius: 26px !important;
  }

  section.new-pricing-section .new-pricing-card h3,
  section.new-pricing-section .new-plan-text {
    min-height: 0 !important;
  }

  section.new-pricing-section .new-price {
    font-size: clamp(2.6rem, 13vw, 3.45rem) !important;
  }

  section.new-pricing-section .new-plan-btn {
    width: 100% !important;
    max-width: 300px !important;
    margin-top: 10px !important;
  }
}
/* =========================================================
   MOBILE FIX — INTRO TITLE OVERFLOW
========================================================= */

@media (max-width: 520px) {
  .intro-title {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;

    font-size: clamp(1.75rem, 9vw, 2.45rem) !important;
    line-height: 1.08 !important;
    letter-spacing: 0.015em !important;
  }

  .intro-section .glow-box {
    width: min(100%, calc(100vw - 28px)) !important;
    overflow: hidden;
  }
}

/* =========================================================
   VIP REDEEM BOX — PROFILE PANEL FIX
========================================================= */

.user-mini-card {
  width: 100%;
}

.user-mini-actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
}

.vip-redeem-wrap {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 12px !important;
  margin: 8px auto !important;
  padding: 14px !important;

  border-radius: 22px !important;
  border: 1px solid rgba(0,247,255,0.35) !important;

  background: rgba(0,0,0,0.52) !important;

  box-shadow:
    inset 0 0 18px rgba(0,247,255,0.12),
    0 0 22px rgba(0,247,255,0.18) !important;
}

.vip-redeem-wrap .vip-input {
  width: 100% !important;
  min-width: 0 !important;
  height: 48px !important;
  padding: 12px 16px !important;

  display: block !important;

  border-radius: 999px !important;
  border: 1px solid rgba(0,247,255,0.55) !important;

  background: rgba(0,0,0,0.82) !important;
  color: #fff !important;

  font-size: 0.86rem !important;
  text-align: center !important;

  box-shadow:
    inset 0 0 14px rgba(0,247,255,0.12),
    0 0 16px rgba(0,247,255,0.2) !important;
}

.vip-redeem-wrap .vip-input::placeholder {
  color: rgba(234,255,255,0.6) !important;
}

.vip-redeem-wrap .vip-btn {
  width: 100% !important;
  min-height: 48px !important;
  margin: 0 !important;
}

.user-status-panel .button-glow-small,
.user-status-panel .button-glow,
.user-status-panel .upgrade-btn {
  width: 100% !important;
  margin: 0 !important;
  justify-content: center !important;
}
/* =========================================================
   MEMBER PANEL — FIX MY FAVORITES VISIBILITY
========================================================= */

.user-status-panel a,
.user-status-panel button,
.user-status-panel .button-glow-small {
  color: #eaffff !important;
  opacity: 1 !important;
}

/* specifically target My Favorites */
.user-status-panel a[href="/favorite"],
.user-status-panel a[href="/favorites"] {
  color: #00f7ff !important;

  text-shadow:
    0 0 10px rgba(0,247,255,0.9),
    0 0 18px rgba(255,56,248,0.4);

  opacity: 1 !important;
}

/* remove disabled look */
.user-status-panel .disabled,
.user-status-panel [disabled] {
  opacity: 1 !important;
  filter: none !important;
}
/* =========================================================
   SMOOTH JAZZ MEMORY GAME — SUPREME PREMIUM (FINAL FIXED)
========================================================= */

.memory-game-card {
  overflow: hidden;
}

.memory-stats {
  width: min(760px, 100%);
  margin: 28px auto 34px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.memory-stats div {
  padding: 18px 14px;
  border-radius: 22px;
  border: 1px solid rgba(0,247,255,0.32);

  background:
    radial-gradient(circle at top, rgba(0,247,255,0.12), transparent 45%),
    rgba(0,0,0,0.72);

  box-shadow:
    0 0 22px rgba(0,247,255,0.18),
    inset 0 0 18px rgba(255,56,248,0.06);
}

.memory-stats span {
  display: block;
  margin-bottom: 6px;

  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.memory-stats strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-shadow: 0 0 14px rgba(255,215,106,0.55);
}

.smooth-memory-grid {
  width: min(860px, 100%);
  margin: 0 auto 34px;

  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 18px;
}

.memory-card {
  position: relative;
  min-height: 155px;
  border: 0;
  border-radius: 24px;
  padding: 0;
  background: transparent;
  perspective: 900px;
  cursor: pointer;
}

.memory-card-inner {
  position: absolute;
  inset: 0;

  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(.2,.8,.2,1);
}

.memory-card.flipped .memory-card-inner,
.memory-card.matched .memory-card-inner {
  transform: rotateY(180deg);
}

.memory-card-face {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;

  border-radius: 24px;
  border: 1px solid rgba(0,247,255,0.36);

  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;

  overflow: hidden;
}

.memory-card-front {
  background:
    radial-gradient(circle at 50% 0%, rgba(0,247,255,0.28), transparent 44%),
    radial-gradient(circle at 50% 100%, rgba(255,56,248,0.18), transparent 42%),
    linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.015)),
    rgba(0,0,0,0.88);

  box-shadow:
    0 0 24px rgba(0,247,255,0.22),
    0 0 48px rgba(255,56,248,0.13),
    inset 0 0 22px rgba(0,247,255,0.08);
}

.memory-card-front i {
  color: var(--cyan);
  font-size: 2.25rem;
}

.memory-card-front span {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.72rem;
}

.memory-card-back {
  transform: rotateY(180deg);
  background: rgba(0,0,0,0.92);
}

.memory-card-back img {
  width: 64px;
  height: 64px;
  border-radius: 18px;
}

.memory-card-back h3 {
  font-size: 0.82rem;
}

.memory-card-back p {
  font-size: 0.72rem;
}

.memory-card.matched {
  pointer-events: none;
}

/* =========================================================
   📱 MOBILE FIXES + BUTTON CENTERING
========================================================= */

@media (max-width: 760px) {

  .memory-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .smooth-memory-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .memory-card {
    min-height: 124px;
  }

  .memory-card-back img {
    width: 48px;
    height: 48px;
  }

  .memory-card-back h3 {
    font-size: 0.68rem;
  }

  .memory-card-back p {
    display: none;
  }

  /* 🔥 FINAL GUARANTEED BUTTON CENTER */
  .memory-game-card {
    text-align: center;
  }

  .memory-game-card .button-glow {
    display: inline-flex;
    margin: 22px auto 0;
    justify-content: center;
  }
}

/* SMALL DEVICES */
@media (max-width: 420px) {
  .smooth-memory-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .memory-card {
    min-height: 138px;
  }
}
/* =========================================================
   SMOOTH JAZZ TRIVIA — SUPREME PREMIUM (FINAL FIXED)
========================================================= */

.trivia-game-card {
  overflow: hidden;
}

.trivia-stats {
  width: min(760px, 100%);
  margin: 28px auto 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.trivia-stats div {
  padding: 18px 14px;
  border-radius: 22px;
  border: 1px solid rgba(0,247,255,0.32);
  background:
    radial-gradient(circle at top, rgba(0,247,255,0.12), transparent 45%),
    rgba(0,0,0,0.72);
  box-shadow:
    0 0 22px rgba(0,247,255,0.18),
    inset 0 0 18px rgba(255,56,248,0.06);
}

.trivia-stats span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trivia-stats strong {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-shadow: 0 0 14px rgba(255,215,106,0.55);
}

.trivia-box {
  width: min(820px, 100%);
  margin: 0 auto 30px;
  padding: clamp(24px, 4vw, 38px);
  border-radius: 30px;
  border: 1px solid rgba(0,247,255,0.35);
  background:
    radial-gradient(circle at top, rgba(0,247,255,0.16), transparent 44%),
    linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.018)),
    rgba(0,0,0,0.88);
  box-shadow:
    0 0 30px rgba(0,247,255,0.24),
    0 0 70px rgba(255,56,248,0.15),
    inset 0 0 24px rgba(0,247,255,0.08);
}

#triviaQuestion {
  margin: 0 auto 26px;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 4vw, 2rem);
  line-height: 1.25;
  text-align: center;
  text-shadow:
    0 0 14px rgba(0,247,255,0.6),
    0 0 26px rgba(255,56,248,0.22);
}

.trivia-answers {
  display: grid;
  gap: 14px;
}

.trivia-answer-btn {
  width: 100%;
  min-height: 54px;
  padding: 14px 18px;
  border-radius: 18px;
  border: 1px solid rgba(0,247,255,0.32);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.015)),
    rgba(0,0,0,0.72);
  color: #eaffff;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  box-shadow: 0 0 18px rgba(0,247,255,0.12);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.trivia-answer-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255,56,248,0.55);
  box-shadow:
    0 0 18px rgba(0,247,255,0.35),
    0 0 34px rgba(255,56,248,0.2);
}

.trivia-answer-btn.correct {
  border-color: rgba(92,255,177,0.78);
  background: rgba(92,255,177,0.18);
  color: #dfffee;
  box-shadow: 0 0 26px rgba(92,255,177,0.42);
}

.trivia-answer-btn.wrong {
  border-color: rgba(255,45,85,0.72);
  background: rgba(255,45,85,0.16);
  color: #ffe8ee;
  box-shadow: 0 0 22px rgba(255,45,85,0.32);
}

.trivia-answer-btn:disabled {
  cursor: default;
}

.trivia-win-glow {
  animation: triviaWinGlow 1.2s ease-in-out 2;
}

@keyframes triviaWinGlow {
  50% {
    box-shadow:
      0 0 42px rgba(255,215,106,0.58),
      0 0 86px rgba(0,247,255,0.35),
      0 0 120px rgba(255,56,248,0.22);
  }
}

/* =========================================================
   📱 MOBILE FIXES + BUTTON CENTERING
========================================================= */

@media (max-width: 760px) {
  .trivia-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .trivia-answer-btn {
    min-height: 50px;
    font-size: 0.92rem;
  }

  /* 🔥 FINAL GUARANTEED BUTTON CENTER */
  .trivia-game-card {
    text-align: center;
  }

  .trivia-game-card .button-glow {
    display: inline-flex;
    margin: 22px auto 0;
    justify-content: center;
  }
}
/* =========================================================
   GAMES SECTION — PLAYER AREA / INNER CARDS ONLY
========================================================= */

.games-section {
  width: 100%;
  padding: 14px 0 8px !important;
}

.games-section .content-card {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.games-section .section-title,
.games-section .section-subtitle {
  display: none !important;
}

.games-grid {
  width: min(900px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 22px;
}

.game-card {
  padding: 28px 22px;
  border-radius: 26px;

  border: 1px solid rgba(0,247,255,0.35);

  background:
    radial-gradient(circle at top, rgba(0,247,255,0.14), transparent 42%),
    linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.015)),
    rgba(0,0,0,0.82);

  box-shadow:
    0 0 24px rgba(0,247,255,0.24),
    0 0 50px rgba(255,56,248,0.12),
    inset 0 0 20px rgba(0,247,255,0.07);

  text-align: center;
}

.game-card .section-badge {
  margin-bottom: 14px;
}

.game-card h3 {
  margin: 8px 0 10px;
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: #fff;
  text-transform: uppercase;
}

.game-card p {
  max-width: 320px;
  margin: 0 auto 18px;
  color: var(--ice);
  font-size: 0.9rem;
  line-height: 1.55;
}

.game-card .player-controls {
  margin-top: 16px;
}

.game-card .paypal-wrapper,
.game-card .paypal-wrapper form {
  width: 100%;
  margin: 0;
}

.game-card .button-glow,
.game-card .upgrade-btn {
  width: min(260px, 100%);
}

@media (max-width: 760px) {
  .games-section {
    padding: 10px 0 4px !important;
  }

  .games-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .game-card {
    padding: 24px 18px;
  }
}
/* =========================================================
   YOU SO SMOOTH WIN POPUP
========================================================= */

.you-smooth-popup {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(16px);
}

.you-smooth-popup.show {
  display: flex;
}

.you-smooth-box {
  width: min(520px, 94vw);
  padding: 36px 24px;
  border-radius: 30px;
  text-align: center;
  border: 1px solid rgba(255,215,106,0.65);
  background:
    radial-gradient(circle at top, rgba(255,215,106,0.22), transparent 42%),
    radial-gradient(circle at bottom, rgba(0,247,255,0.18), transparent 40%),
    rgba(0,0,0,0.94);
  box-shadow:
    0 0 38px rgba(255,215,106,0.38),
    0 0 80px rgba(0,247,255,0.24),
    0 0 120px rgba(255,56,248,0.18);
}

.you-smooth-box h2 {
  margin: 10px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 9vw, 4rem);
  color: #fff;
  text-transform: uppercase;
  text-shadow:
    0 0 18px rgba(255,255,255,0.8),
    0 0 34px rgba(0,247,255,0.7),
    0 0 58px rgba(255,56,248,0.4);
}

.you-smooth-box p {
  color: var(--ice);
  margin-bottom: 24px;
}
/* =========================================================
   YOU SO SMOOTH WIN POPUP
========================================================= */

.you-smooth-popup {
  position: fixed;
  inset: 0;
  z-index: 999999;

  display: none;
  align-items: center;
  justify-content: center;

  padding: 24px;

  background:
    radial-gradient(circle at 50% 20%, rgba(0,247,255,0.2), transparent 34%),
    radial-gradient(circle at 50% 80%, rgba(255,56,248,0.18), transparent 36%),
    rgba(0,0,0,0.84);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.you-smooth-popup.show {
  display: flex;
}

.you-smooth-box {
  width: min(540px, 94vw);
  padding: 38px 24px;
  border-radius: 32px;

  text-align: center;

  border: 1px solid rgba(255,215,106,0.68);

  background:
    radial-gradient(circle at top, rgba(255,215,106,0.24), transparent 42%),
    radial-gradient(circle at bottom, rgba(0,247,255,0.2), transparent 42%),
    linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.018)),
    rgba(0,0,0,0.94);

  box-shadow:
    0 0 38px rgba(255,215,106,0.4),
    0 0 80px rgba(0,247,255,0.28),
    0 0 120px rgba(255,56,248,0.2),
    inset 0 0 28px rgba(255,215,106,0.08);

  animation: youSmoothPop 0.38s ease both;
}

@keyframes youSmoothPop {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.92);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.you-smooth-box h2 {
  margin: 12px 0 14px;

  font-family: var(--font-display);
  font-size: clamp(2.1rem, 9vw, 4rem);
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;

  color: #fff;

  text-shadow:
    0 0 18px rgba(255,255,255,0.8),
    0 0 34px rgba(0,247,255,0.72),
    0 0 58px rgba(255,56,248,0.42);
}

.you-smooth-box p {
  max-width: 390px;
  margin: 0 auto 26px;

  color: var(--ice);
  font-size: 1rem;
  line-height: 1.65;
}
/* =========================================================
   🔥 SO SMOOTH X ELITE TOAST + AD SYSTEM
========================================================= */

/* =========================
   TOAST SYSTEM
========================= */

.ssx-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 99999;
  pointer-events: none;
}

.ssx-toast-box {
  min-width: 260px;
  max-width: min(360px, calc(100vw - 32px));
  padding: 16px 22px;
  border-radius: 14px;
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: #fff;
  opacity: 0;
  transform: translateY(-20px) scale(0.95);
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.ssx-toast.show .ssx-toast-box {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.ssx-toast.success .ssx-toast-box {
  border: 1px solid rgba(0, 255, 170, 0.6);
  box-shadow: 0 0 10px rgba(0, 255, 170, 0.5), 0 0 25px rgba(0, 255, 170, 0.3);
  background: rgba(0, 20, 15, 0.85);
}

.ssx-toast.error .ssx-toast-box {
  border: 1px solid rgba(255, 60, 80, 0.6);
  box-shadow: 0 0 10px rgba(255, 60, 80, 0.5), 0 0 25px rgba(255, 60, 80, 0.3);
  background: rgba(20, 0, 5, 0.85);
}

.ssx-toast.warning .ssx-toast-box {
  border: 1px solid rgba(255, 200, 0, 0.6);
  box-shadow: 0 0 10px rgba(255, 200, 0, 0.5), 0 0 25px rgba(255, 200, 0, 0.3);
  background: rgba(25, 20, 0, 0.85);
}

/* =========================
   HERO + MID BANNER ADS — OPTIMIZED PREMIUM SIZE
========================= */

.ssx-ad-rotator {
  position: relative;
  width: min(88%, 780px);
  margin: 26px auto;
  padding: 8px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.48);
  border: 1px solid rgba(0, 247, 255, 0.22);
  backdrop-filter: blur(10px);
  box-shadow:
    0 0 16px rgba(0, 247, 255, 0.2),
    0 0 34px rgba(255, 0, 200, 0.14),
    inset 0 0 10px rgba(255, 255, 255, 0.04);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.ssx-ad-hero {
  width: min(86%, 760px);
  margin: 22px auto 34px;
}

.mid-ad {
  width: min(84%, 720px);
  margin: 38px auto 34px;
}

.ssx-ad-rotator:hover {
  transform: translateY(-2px) scale(1.006);
  box-shadow:
    0 0 24px rgba(0, 247, 255, 0.34),
    0 0 48px rgba(255, 0, 200, 0.22);
}

.ssx-ad-rotator a,
.ssx-floating-ad a {
  display: block;
  position: relative;
  z-index: 2;
  cursor: pointer;
}

.ssx-ad-rotator img {
  width: 100%;
  max-height: 430px;
  object-fit: contain;
  display: block;
  border-radius: 13px;
  transition: opacity 0.4s ease, transform 0.4s ease, filter 0.4s ease;
}

.ssx-ad-rotator:hover img {
  transform: scale(1.01);
  filter: brightness(1.06) contrast(1.04);
}

.ssx-ad-rotator img,
.ssx-floating-ad img {
  pointer-events: none;
}

/* =========================
   FLOATING AD — COMPACT NUCLEAR
========================= */

.ssx-floating-ad {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: clamp(120px, 12vw, 165px);
  max-width: 165px;
  z-index: 9999;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.58);
  border: 1px solid rgba(0, 247, 255, 0.22);
  backdrop-filter: blur(10px);
  box-shadow:
    0 0 14px rgba(0, 247, 255, 0.24),
    0 0 28px rgba(255, 0, 200, 0.18),
    inset 0 0 10px rgba(255, 255, 255, 0.04);
  opacity: 0;
  transform: translateX(140%) scale(0.95);
  animation:
    adSlideIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards,
    floatAd 4s ease-in-out 2.2s infinite,
    glowPulse 3s ease-in-out 2.2s infinite alternate;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ssx-floating-ad img {
  width: 100%;
  display: block;
  transition: opacity 0.4s ease, transform 0.4s ease, filter 0.4s ease;
}

.ssx-floating-ad:hover {
  box-shadow:
    0 0 22px rgba(0, 247, 255, 0.44),
    0 0 44px rgba(255, 0, 200, 0.28);
}

.ssx-floating-ad:hover img {
  transform: scale(1.035);
  filter: brightness(1.08) contrast(1.06);
}

/* =========================
   CLOSE BUTTON
========================= */

.ad-close {
  position: absolute;
  top: 7px;
  right: 8px;
  z-index: 10;
  pointer-events: auto;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #fff;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.25s ease;
}

.ad-close:hover {
  background: #ff004c;
  box-shadow: 0 0 12px rgba(255, 0, 76, 0.9);
  transform: scale(1.1);
}

/* =========================
   ANIMATIONS
========================= */

@keyframes adSlideIn {
  0% {
    opacity: 0;
    transform: translateX(140%) scale(0.95);
  }

  70% {
    opacity: 1;
    transform: translateX(-8px) scale(1.02);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes floatAd {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes glowPulse {
  from {
    box-shadow:
      0 0 12px rgba(0, 247, 255, 0.22),
      0 0 26px rgba(255, 0, 200, 0.14);
  }

  to {
    box-shadow:
      0 0 20px rgba(0, 247, 255, 0.38),
      0 0 40px rgba(255, 0, 200, 0.24);
  }
}

/* =========================
   MOBILE FIXES
========================= */

@media (max-width: 768px) {
  .ssx-toast {
    top: 14px;
    right: 12px;
    left: 12px;
  }

  .ssx-toast-box {
    width: 100%;
    min-width: 0;
    text-align: center;
  }

  .ssx-ad-rotator,
  .ssx-ad-hero,
  .mid-ad {
    width: calc(100% - 34px);
    max-width: 560px;
    margin: 18px auto;
    padding: 6px;
    border-radius: 14px;
  }

  .ssx-ad-rotator img {
    max-height: 310px;
    border-radius: 10px;
  }

  .ssx-floating-ad {
    width: 118px;
    right: 10px;
    bottom: 10px;
    border-radius: 12px;
  }

  .ad-close {
    width: 22px;
    height: 22px;
    font-size: 14px;
    top: 5px;
    right: 6px;
  }
}

@media (max-width: 420px) {
  .ssx-ad-rotator,
  .ssx-ad-hero,
  .mid-ad {
    width: calc(100% - 24px);
  }

  .ssx-ad-rotator img {
    max-height: 240px;
  }

  .ssx-floating-ad {
    width: 104px;
  }
}

/* =========================
   REDUCED MOTION
========================= */

@media (prefers-reduced-motion: reduce) {
  .ssx-floating-ad,
  .ssx-ad-rotator,
  .ssx-toast-box,
  .ssx-floating-ad img,
  .ssx-ad-rotator img,
  .ad-close {
    animation: none !important;
    transition: none !important;
  }

  .ssx-floating-ad {
    opacity: 1;
    transform: none;
  }
}

/* =========================
   FOOTER WAVE — 11/10 NUCLEAR
========================= */

.site-footer {
  position: relative;
  overflow: hidden;
  isolation: isolate; /* 🔥 ensures blend modes stay contained */
}

/* content stays above wave */
.footer-inner {
  position: relative;
  z-index: 3;
}

/* 🌊 WAVE CANVAS */
.footer-wave-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;

  opacity: 0.55;

  pointer-events: none;

  /* 🔥 neon glow blending */
  mix-blend-mode: screen;

  /* 🔥 subtle depth fade */
  mask-image: linear-gradient(
    to top,
    rgba(0,0,0,1) 40%,
    rgba(0,0,0,0.7) 70%,
    rgba(0,0,0,0) 100%
  );

  -webkit-mask-image: linear-gradient(
    to top,
    rgba(0,0,0,1) 40%,
    rgba(0,0,0,0.7) 70%,
    rgba(0,0,0,0) 100%
  );

  transition: opacity 0.4s ease;
}

/* 🔥 optional glow layer (adds depth) */
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;

  background:
    radial-gradient(circle at 50% 100%, rgba(0,247,255,0.18), transparent 60%),
    radial-gradient(circle at 30% 100%, rgba(255,0,200,0.12), transparent 60%),
    radial-gradient(circle at 70% 100%, rgba(255,180,0,0.12), transparent 60%);

  pointer-events: none;
  opacity: 0.6;
}

/* 🔥 hover interaction (subtle, premium feel) */
.site-footer:hover .footer-wave-canvas {
  opacity: 0.7;
}

/* =========================
   MOBILE TUNING
========================= */

@media (max-width: 768px) {
  .footer-wave-canvas {
    opacity: 0.4;
  }
}

/* =========================
   REDUCED MOTION SUPPORT
========================= */

@media (prefers-reduced-motion: reduce) {
  .footer-wave-canvas {
    display: none;
  }
}
/* =========================================================
   SO SMOOTH X PLAYER — 11/10 ACTIVATION SYSTEM
========================================================= */

.nuclear-player {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.nuclear-player::before {
  content: "";
  position: absolute;
  inset: -40%;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 35%, rgba(0,247,255,0.18), transparent 38%),
    radial-gradient(circle at 30% 70%, rgba(255,0,204,0.16), transparent 38%),
    radial-gradient(circle at 70% 70%, rgba(255,190,0,0.12), transparent 40%);
  opacity: 0.35;
  filter: blur(18px);
  pointer-events: none;
  animation: playerAuraFlow 12s linear infinite;
}

.nuclear-player > * {
  position: relative;
  z-index: 1;
}

.nuclear-player.is-playing {
  transform: translateY(-3px);
  border-color: rgba(0,247,255,0.55);
  box-shadow:
    0 0 35px rgba(0,247,255,0.38),
    0 0 80px rgba(255,0,204,0.22),
    inset 0 0 30px rgba(255,255,255,0.05);
}

.nuclear-player.is-playing .player-art {
  animation: albumBreath 4s ease-in-out infinite;
  box-shadow:
    0 0 28px rgba(0,247,255,0.45),
    0 0 70px rgba(255,0,204,0.26);
}

.nuclear-player.is-playing .ssx-orbit-glow {
  animation: orbitSpin 9s linear infinite, orbitPulse 2.6s ease-in-out infinite alternate;
}

.nuclear-player.is-playing .ssx-wave-wrap span,
.nuclear-player.is-playing .ssx-equalizer span {
  animation-duration: 0.75s !important;
  filter: drop-shadow(0 0 10px rgba(0,247,255,0.9));
}

.nuclear-player.live-locked {
  animation: liveLockFlash 0.75s ease;
}

.live-sync-badge.live-locked,
.live-btn.live-locked {
  box-shadow:
    0 0 20px rgba(255,0,60,0.75),
    0 0 50px rgba(255,0,60,0.35);
  animation: livePulseHard 1.1s ease-in-out infinite alternate;
}

.play-btn-glow.is-active {
  box-shadow:
    0 0 25px rgba(0,247,255,0.65),
    0 0 60px rgba(255,0,204,0.35);
  transform: scale(1.03);
}

.player-status.status-live {
  color: #00f7ff;
  text-shadow: 0 0 14px rgba(0,247,255,0.75);
}

@keyframes playerAuraFlow {
  from { transform: rotate(0deg) scale(1); }
  to { transform: rotate(360deg) scale(1.05); }
}

@keyframes albumBreath {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50% { transform: scale(1.035); filter: brightness(1.12) contrast(1.08); }
}

@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes orbitPulse {
  from { opacity: 0.55; }
  to { opacity: 1; }
}

@keyframes liveLockFlash {
  0% { transform: scale(1); }
  35% { transform: scale(1.018); }
  100% { transform: scale(1); }
}

@keyframes livePulseHard {
  from { transform: scale(1); }
  to { transform: scale(1.04); }
}
/* =========================================================
   CLEAN TOP TOAST — SO SMOOTH X
========================================================= */

#ssxToast {
  position: fixed !important;
  top: 1225px !important;
  left: 50% !important;
  bottom: auto !important;
  transform: translateX(-50%) !important;
  z-index: 999999 !important;

  width: auto !important;
  max-width: min(92vw, 520px) !important;
  min-height: 0 !important;
  height: auto !important;

  padding: 10px 18px !important;
  margin: 0 !important;

  border-radius: 999px !important;
  border: 1px solid rgba(0, 247, 255, 0.35) !important;

  background: rgba(0, 0, 0, 0.72) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;

  box-shadow:
    0 0 14px rgba(0, 247, 255, 0.35),
    0 0 24px rgba(255, 56, 248, 0.18) !important;

  text-align: center !important;
  pointer-events: none !important;
}

#ssxToast[style*="display: none"] {
  display: none !important;
}

#ssxToast::before,
#ssxToast::after {
  display: none !important;
  content: none !important;
}

#ssxToast p,
#ssxToast .glow-text {
  margin: 0 !important;
  padding: 0 !important;
  color: #00f7ff !important;
  font-size: 0.95rem !important;
  line-height: 1.25 !important;
  white-space: nowrap !important;
}
#ssxToast {
  opacity: 0;
  transform: translate(-50%, -10px);
}

#ssxToast[style*="display: block"] {
  opacity: 1 !important;
  transform: translate(-50%, 0) !important;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
/* =========================================================
   📱 SO SMOOTH X — MOBILE PLAYER VISION LOCK
   Matches centered vertical mobile app layout
   Desktop untouched
========================================================= */

@media (max-width: 760px) {
  .ssx-player-page {
    width: 100% !important;
    max-width: 430px !important;
    margin: 0 auto !important;
    padding: 18px 14px 96px !important;
    overflow-x: hidden !important;
  }

  .ssx-media-stage {
    width: 100% !important;
    max-width: 430px !important;
    aspect-ratio: auto !important;
    min-height: 760px !important;
    margin: 18px auto 22px !important;
    padding: 24px 16px 24px !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;

    border-radius: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
  }

  .ssx-media-bg {
    display: none !important;
  }

  .ssx-stage-art {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;

    width: min(82vw, 330px) !important;
    max-width: 330px !important;
    margin: 0 auto 24px !important;

    border-radius: 26px !important;
    z-index: 2 !important;
  }

  .ssx-stage-overlay {
    position: relative !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;

    width: 100% !important;
    max-width: 390px !important;
    margin: 0 auto 18px !important;
    text-align: center !important;
    z-index: 3 !important;
  }

  .ssx-stage-overlay .section-badge,
  #liveStatusBadge {
    margin: 0 auto 16px !important;
  }

  .ssx-stage-overlay .now-playing-title,
  .ssx-stage-overlay h2 {
    font-size: clamp(2.45rem, 12vw, 4rem) !important;
    line-height: 0.95 !important;
    margin: 10px auto 14px !important;
    max-width: 380px !important;
  }

  .ssx-stage-overlay .now-playing-meta,
  .ssx-stage-overlay p {
    font-size: 0.98rem !important;
    line-height: 1.35 !important;
    margin: 6px auto !important;
    max-width: 330px !important;
  }

  .ssx-stage-controls {
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
    transform: none !important;

    width: 100% !important;
    max-width: 340px !important;
    margin: 18px auto 18px !important;
    padding: 0 !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;

    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  .ssx-stage-controls .button-glow,
  .ssx-stage-controls .play-btn-glow,
  .ssx-stage-controls .live-btn,
  #playBtn,
  #liveBtn,
  #shareBtn,
  #favoriteCurrentTrackBtn,
  #skipBtn {
    width: 100% !important;
    max-width: 330px !important;
    min-height: 56px !important;
    margin: 0 auto !important;
    padding: 13px 18px !important;

    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 12px !important;

    border-radius: 999px !important;
    font-size: 0.78rem !important;
    letter-spacing: 0.09em !important;
    color: #031014 !important;

    box-shadow:
      0 0 18px rgba(0,247,255,0.52),
      0 0 34px rgba(255,56,248,0.25) !important;
  }

  #playBtn,
  #liveBtn {
    min-height: 60px !important;
    font-size: 0.84rem !important;
  }

  #liveBtn {
    background: linear-gradient(135deg, #5cffb1, #00f7ff 64%, #43fff7) !important;
    animation: ssxMobileLivePulseVision 1.55s ease-in-out infinite !important;
  }

  @keyframes ssxMobileLivePulseVision {
    0%, 100% {
      filter: brightness(1);
      box-shadow:
        0 0 18px rgba(0,247,255,0.65),
        0 0 34px rgba(92,255,177,0.38) !important;
    }

    50% {
      filter: brightness(1.12);
      box-shadow:
        0 0 28px rgba(0,247,255,0.95),
        0 0 50px rgba(92,255,177,0.55),
        0 0 18px rgba(255,45,85,0.28) !important;
    }
  }

  .ssx-stage-volume {
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
    transform: none !important;

    width: min(100%, 390px) !important;
    margin: 20px auto 0 !important;
    padding: 12px 14px !important;

    display: grid !important;
    grid-template-columns: 90px 1fr !important;
    align-items: center !important;
    gap: 10px !important;

    border-radius: 14px !important;
    background: rgba(0,0,0,0.38) !important;
    border: 1px solid rgba(0,247,255,0.16) !important;
  }

  .ssx-stage-volume label {
    margin: 0 !important;
    transform: none !important;
    white-space: nowrap !important;
    font-size: 0.7rem !important;
    text-align: left !important;
  }

  .ssx-stage-volume input[type="range"],
  #volume {
    width: 100% !important;
  }

  .ssx-progress-shell {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;

    width: min(100%, 390px) !important;
    height: 6px !important;
    margin: 12px auto 0 !important;
    border-radius: 999px !important;
    overflow: hidden !important;
  }

  .ssx-stage-status {
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: 100% !important;
    margin: 6px auto 0 !important;
    display: block !important;
    opacity: 0.7 !important;
    font-size: 0.78rem !important;
  }

  .premium-active,
  .premium-badge,
  .premium-status,
  #premiumStatus {
    width: fit-content !important;
    max-width: 92% !important;
    margin: 24px auto 16px !important;
    text-align: center !important;
  }

  .cta-row,
  .bottom-actions,
  .player-extra-actions {
    width: 100% !important;
    max-width: 390px !important;
    margin: 18px auto 0 !important;

    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }

  .cta-row .button-glow,
  .bottom-actions .button-glow,
  .player-extra-actions .button-glow {
    width: 100% !important;
    min-height: 58px !important;
    margin: 0 auto !important;
  }
}
/* =========================================================
   📱 MOBILE — HIDE WEB VOLUME SLIDER
   Use phone volume buttons instead
========================================================= */

@media (max-width: 760px) {
  .ssx-stage-volume,
  .volume-control,
  .volume-row {
    display: none !important;
  }
}
/* =========================================================
   📱 MOBILE — ARTIST + FAVORITES BUTTONS (SUPREME ALIGNMENT)
========================================================= */

@media (max-width: 760px) {

  /* 🔥 Wrap container fix (in case no class is set) */
  #artistLink,
  a[href="/favorite"] {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;

    width: 100% !important;
    max-width: 340px !important;
    margin: 0 auto !important;

    min-height: 56px !important;
    padding: 14px 18px !important;

    border-radius: 999px !important;

    text-align: center !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.08em !important;

    gap: 10px !important;
  }

  /* 🔥 STACK SPACING (clean vertical flow) */
  #artistLink {
    margin-top: 18px !important;
  }

  a[href="/favorite"] {
    margin-top: 12px !important;
  }

}
/* =========================================================
   SO SMOOTH X — iPAD PLAYER FINAL STRUCTURE v5
   Matches Web Layout • Portrait + Landscape • 11/10
========================================================= */

@media only screen and (min-width: 768px) and (max-width: 1366px) {

  .ssx-player-page {
    padding: 22px 14px 70px !important;
    overflow-x: hidden !important;
  }

  .ssx-media-stage {
    width: min(94vw, 980px) !important;
    max-width: 980px !important;
    margin: 0 auto 26px !important;
    padding: 34px 28px 38px !important;

    display: grid !important;
    grid-template-columns: minmax(230px, 34%) minmax(0, 1fr) !important;
    grid-template-areas:
      "badge badge"
      "art info"
      "controls controls"
      "volume volume"
      "status status"
      "progress progress" !important;

    align-items: center !important;
    gap: 18px 34px !important;

    min-height: auto !important;
    height: auto !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    border-radius: 34px !important;
  }

  .ssx-video-ready-badge {
    grid-area: badge !important;
    position: relative !important;
    inset: auto !important;
    transform: none !important;
    margin: 0 auto 4px !important;
    z-index: 5 !important;
  }

  .ssx-stage-art {
    grid-area: art !important;
    position: relative !important;
    inset: auto !important;
    transform: none !important;

    width: min(30vw, 280px) !important;
    max-width: 280px !important;
    aspect-ratio: 1 / 1 !important;
    margin: 0 auto !important;
    z-index: 5 !important;
  }

  .ssx-stage-overlay {
    grid-area: info !important;
    position: relative !important;
    inset: auto !important;
    transform: none !important;

    width: 100% !important;
    max-width: 520px !important;
    margin: 0 auto !important;
    text-align: center !important;
    z-index: 5 !important;
  }

  .live-sync-badge {
    margin: 0 auto 10px !important;
  }

  .ssx-stage-overlay .now-playing-title {
    font-size: clamp(2rem, 4.4vw, 3.7rem) !important;
    line-height: 1.02 !important;
    margin: 8px auto 10px !important;
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
  }

  .ssx-stage-overlay .now-playing-meta {
    font-size: 0.98rem !important;
    line-height: 1.42 !important;
    margin: 4px auto !important;
  }

  .ssx-stage-controls {
    grid-area: controls !important;
    position: relative !important;
    inset: auto !important;
    transform: none !important;

    width: 100% !important;
    max-width: 760px !important;
    margin: 6px auto 0 !important;

    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 12px !important;
    z-index: 5 !important;
  }

  .ssx-stage-controls button,
  .ssx-stage-controls .button-glow,
  .ssx-stage-controls .play-btn-glow,
  .ssx-stage-controls .live-btn {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 50px !important;
    padding: 11px 12px !important;
    font-size: 0.72rem !important;
    line-height: 1.1 !important;
    border-radius: 999px !important;
    white-space: nowrap !important;
    justify-content: center !important;
  }

  .ssx-stage-volume {
    grid-area: volume !important;
    position: relative !important;
    inset: auto !important;
    transform: none !important;

    width: 100% !important;
    max-width: 640px !important;
    margin: 0 auto !important;
    padding: 8px 12px !important;

    display: grid !important;
    grid-template-columns: 105px 1fr !important;
    gap: 12px !important;
    align-items: center !important;
    z-index: 5 !important;
  }

  .ssx-stage-status {
    grid-area: status !important;
    position: relative !important;
    width: 100% !important;
    max-width: 640px !important;
    margin: 0 auto !important;
    text-align: center !important;
    font-size: 0.86rem !important;
    z-index: 5 !important;
  }

  .ssx-progress-shell {
    grid-area: progress !important;
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    max-width: 640px !important;
    height: 7px !important;
    margin: 0 auto !important;
    z-index: 5 !important;
  }

  .ssx-player-link-bar {
    width: min(94vw, 760px) !important;
    margin: 18px auto 0 !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .ssx-player-link-bar .button-glow,
  .ssx-player-link-bar a,
  .premium-active-badge {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 50px !important;
    font-size: 0.72rem !important;
    border-radius: 999px !important;
    justify-content: center !important;
    text-align: center !important;
  }
}

/* iPad Portrait */
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {

  .ssx-media-stage {
    width: min(92vw, 720px) !important;
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "badge"
      "art"
      "info"
      "controls"
      "volume"
      "status"
      "progress" !important;
    gap: 14px !important;
    padding: 30px 22px 36px !important;
  }

  .ssx-stage-art {
    width: min(55vw, 270px) !important;
    max-width: 270px !important;
  }

  .ssx-stage-overlay {
    max-width: 620px !important;
  }

  .ssx-stage-controls {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    max-width: 620px !important;
  }

  .ssx-player-link-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    max-width: 620px !important;
  }
}

/* Smaller old iPad portrait */
@media only screen and (min-width: 768px) and (max-width: 834px) and (orientation: portrait) {

  .ssx-media-stage {
    width: 92vw !important;
    padding: 26px 18px 32px !important;
  }

  .ssx-stage-art {
    width: min(54vw, 240px) !important;
  }

  .ssx-stage-overlay .now-playing-title {
    font-size: clamp(1.8rem, 5.2vw, 3rem) !important;
  }

  .ssx-stage-controls button,
  .ssx-stage-controls .button-glow,
  .ssx-stage-controls .play-btn-glow,
  .ssx-stage-controls .live-btn {
    font-size: 0.66rem !important;
    min-height: 48px !important;
  }

  .ssx-stage-volume {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }
}

/* =========================================================
   SO SMOOTH X — iPAD PORTRAIT PLAYER LOCKDOWN v8
   Fixes Volume Visibility • Premium Button Layout • Alignment
========================================================= */

@media only screen
  and (min-width: 768px)
  and (max-width: 1024px)
  and (orientation: portrait) {

  .ssx-player-page {
    padding: 14px 8px 60px !important;
  }

  .ssx-media-stage {
    width: 94vw !important;
    max-width: 720px !important;

    margin: 0 auto 0 !important;
    padding: 22px 16px 22px !important;

    display: grid !important;
    grid-template-columns: 34% 1fr !important;
    grid-template-areas:
      "badge badge"
      "art info"
      "controls controls"
      "volume volume"
      "status status"
      "progress progress" !important;

    gap: 10px 16px !important;

    overflow: hidden !important;
    border-radius: 32px 32px 0 0 !important;
  }

  .ssx-stage-art {
    width: min(28vw, 205px) !important;
    max-width: 205px !important;
  }

  .ssx-stage-overlay {
    max-width: 390px !important;
  }

  .ssx-stage-overlay .now-playing-title {
    font-size: clamp(1.55rem, 4.4vw, 2.45rem) !important;
    line-height: 1 !important;
    margin: 4px auto 6px !important;
  }

  .ssx-stage-overlay .now-playing-meta {
    font-size: 0.76rem !important;
    line-height: 1.22 !important;
    margin: 2px auto !important;
  }

  .live-sync-badge,
  .ssx-video-ready-badge {
    font-size: 0.68rem !important;
    padding: 7px 14px !important;
  }

  .ssx-stage-controls {
    width: 100% !important;
    max-width: 630px !important;

    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;

    gap: 8px !important;
    margin: 2px auto 0 !important;
  }

  .ssx-stage-controls button,
  .ssx-stage-controls .button-glow,
  .ssx-stage-controls .play-btn-glow,
  .ssx-stage-controls .live-btn {
    min-height: 40px !important;
    padding: 8px 6px !important;

    font-size: 0.5rem !important;
    letter-spacing: 0.04em !important;

    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  /* FORCE VOLUME TO SHOW INSIDE PLAYER */
  .ssx-stage-volume {
    display: grid !important;
    visibility: visible !important;
    opacity: 1 !important;

    width: 100% !important;
    max-width: 620px !important;

    grid-template-columns: 80px 1fr !important;

    margin: 0 auto !important;
    padding: 5px 8px !important;

    gap: 8px !important;

    position: relative !important;
    z-index: 10 !important;
  }

  .ssx-stage-volume label {
    font-size: 0.62rem !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  .volume-slider {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    height: 20px !important;
  }

  .ssx-stage-status {
    font-size: 0.68rem !important;
    line-height: 1.2 !important;
    margin: 0 auto !important;
  }

  .ssx-progress-shell {
    height: 6px !important;
    margin: 0 auto !important;
  }

  /* KEEP PREMIUM LINKS COMPACT AND ATTACHED */
  .ssx-player-link-bar {
    width: 94vw !important;
    max-width: 720px !important;

    margin: 0 auto 22px !important;
    padding: 12px 16px 18px !important;

    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;

    gap: 8px !important;

    border-radius: 0 0 32px 32px !important;
  }

  .ssx-player-link-bar .button-glow,
  .ssx-player-link-bar a,
  .premium-active-badge {
    min-height: 40px !important;
    padding: 8px 6px !important;

    font-size: 0.5rem !important;
    letter-spacing: 0.04em !important;

    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  /* Stop lower sections from crowding the player */
  .games-section {
    margin-top: 26px !important;
  }
}
/* =========================================================
   SO SMOOTH X — iPAD PROFILE PANEL SYSTEM FINAL
   True Circle Icon • Portrait + Landscape • VIP Aligned
========================================================= */

@media (min-width: 761px) and (max-width: 1366px) {

  #userStatusArea.user-status-panel {
    position: fixed !important;

    top: 110px !important;
    right: 28px !important;

    width: 74px !important;
    min-width: 74px !important;
    max-width: 74px !important;

    height: 74px !important;
    min-height: 74px !important;
    max-height: 74px !important;

    padding: 0 !important;
    margin: 0 !important;

    display: block !important;

    overflow: visible !important;

    z-index: 2147483647 !important;

    background: transparent !important;
    border: none !important;
    box-shadow: none !important;

    aspect-ratio: 1 / 1 !important;
    flex: 0 0 74px !important;
  }

  #userStatusArea.user-status-panel::before {
    content: "\f007";

    position: absolute !important;
    inset: 0 !important;

    width: 74px !important;
    height: 74px !important;

    min-width: 74px !important;
    min-height: 74px !important;

    max-width: 74px !important;
    max-height: 74px !important;

    aspect-ratio: 1 / 1 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 9999px !important;

    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;

    color: #ffffff !important;
    font-size: 1.8rem !important;

    background:
      radial-gradient(
        circle at top,
        rgba(255,255,255,0.15),
        rgba(255,255,255,0.02)
      ),
      rgba(0,0,0,0.92) !important;

    border: 2px solid rgba(0,255,255,0.8) !important;

    box-shadow:
      0 0 24px rgba(0,255,255,0.7),
      0 0 50px rgba(255,0,255,0.25) !important;

    pointer-events: auto !important;
  }

  #userStatusArea.user-status-panel.open::before,
  #userStatusArea.user-status-panel.active::before,
  body.profile-open #userStatusArea.user-status-panel::before {
    content: "\f00d";
  }

  #userStatusArea.user-status-panel .user-mini-card {
    position: absolute !important;

    top: 88px !important;
    right: 0 !important;

    width: 380px !important;
    min-width: 380px !important;
    max-width: 380px !important;

    min-height: 520px !important;
    height: auto !important;

    padding: 28px 24px 34px !important;

    border-radius: 28px !important;

    display: none !important;

    z-index: 2147483647 !important;

    background:
      linear-gradient(
        180deg,
        rgba(255,255,255,0.12),
        rgba(255,255,255,0.03)
      ),
      rgba(0,8,14,0.96) !important;

    border: 1px solid rgba(0,255,255,0.45) !important;

    box-shadow:
      0 0 32px rgba(0,255,255,0.5),
      0 0 64px rgba(255,0,255,0.22),
      0 25px 70px rgba(0,0,0,0.72) !important;

    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;

    flex-direction: column !important;
    justify-content: flex-start !important;
    gap: 18px !important;

    overflow: visible !important;
  }

  #userStatusArea.user-status-panel.open .user-mini-card,
  #userStatusArea.user-status-panel.active .user-mini-card,
  body.profile-open #userStatusArea.user-status-panel .user-mini-card {
    display: flex !important;
  }

  #userStatusArea .user-mini-card > * {
    flex-shrink: 0 !important;
  }

  #userStatusArea .vip-redeem-wrap {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    margin: 0 !important;
  }

  #userStatusArea .vip-code-input,
  #userStatusArea input[type="text"] {
    width: 100% !important;

    min-height: 58px !important;
    height: 58px !important;

    display: block !important;

    text-align: center !important;

    border-radius: 18px !important;

    margin: 0 !important;
    padding: 0 16px !important;

    flex-shrink: 0 !important;
  }

  #userStatusArea .premium-btn,
  #userStatusArea button,
  #userStatusArea .restore-btn,
  #userStatusArea .button-glow-small,
  #userStatusArea .vip-redeem-btn {
    width: 100% !important;

    min-height: 58px !important;
    height: 58px !important;

    margin: 0 !important;
    padding: 0 18px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 18px !important;

    flex-shrink: 0 !important;
  }

  #userStatusArea .apple-upgrade {
    width: 100% !important;

    display: flex !important;
    flex-direction: column !important;

    gap: 14px !important;

    margin: 0 !important;
    padding: 16px !important;

    border-radius: 22px !important;
  }

  #userStatusArea .glow-text,
  #userStatusArea .tier-text {
    width: 100% !important;
    text-align: center !important;
    margin: 0 !important;
  }

  #userStatusArea .mobile-profile-toggle,
  #userStatusArea .profile-toggle-btn {
    display: none !important;
  }
}
.ssx-global-app-qr {
  position: fixed;
  top: max(14px, env(safe-area-inset-top));
  left: 14px;
  z-index: 999999;
  width: 94px;
  padding: 8px;
  border-radius: 18px;
  text-align: center;
  text-decoration: none;
  background: rgba(3, 6, 13, 0.92);
  border: 1px solid rgba(0, 245, 255, 0.45);
  box-shadow: 0 0 24px rgba(0, 245, 255, 0.25);
  backdrop-filter: blur(10px);
}

.ssx-global-app-qr span {
  display: block;
  margin-bottom: 6px;
  color: #ffd95a;
  font-family: "Orbitron", sans-serif;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.ssx-global-app-qr img {
  display: block;
  width: 78px;
  height: 78px;
  padding: 5px;
  border-radius: 12px;
  background: #fff;
}

@media (max-width: 720px) {
  .ssx-global-app-qr {
    width: 68px;
    padding: 6px;
    border-radius: 14px;
  }

  .ssx-global-app-qr span {
    font-size: 0.48rem;
  }

  .ssx-global-app-qr img {
    width: 54px;
    height: 54px;
  }
}
@media (max-width: 768px) {
  .ssx-global-app-qr {
    display: none !important;
  }
}
/* =========================================================
   SO SMOOTH X — MOBILE REAL MEMBER ICON RESTORE
========================================================= */

@media (max-width: 760px) {
  .mobile-profile-toggle {
    position: fixed !important;
    top: calc(88px + env(safe-area-inset-top)) !important;
    right: 14px !important;
    left: auto !important;
    bottom: auto !important;

    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    min-height: 54px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 999px !important;
    border: 2px solid rgba(0, 247, 255, 0.82) !important;

    background:
      radial-gradient(circle at top, rgba(255,255,255,0.16), rgba(255,255,255,0.03)),
      rgba(0,0,0,0.94) !important;

    color: #ffffff !important;
    font-size: 1.45rem !important;

    box-shadow:
      0 0 22px rgba(0, 247, 255, 0.65),
      0 0 42px rgba(255, 56, 248, 0.24) !important;

    z-index: 2147483647 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    cursor: pointer !important;
  }

  .mobile-profile-toggle.open,
  .mobile-profile-toggle.active {
    color: #ffd76a !important;
    border-color: rgba(255, 215, 106, 0.95) !important;
  }

  .mobile-profile-toggle.open i::before,
  .mobile-profile-toggle.active i::before {
    content: "\f00d";
  }

  #userStatusArea.user-status-panel {
    position: fixed !important;
    top: calc(150px + env(safe-area-inset-top)) !important;
    right: 14px !important;
    left: auto !important;

    width: min(88vw, 360px) !important;
    max-width: min(88vw, 360px) !important;
    height: auto !important;

    display: none !important;
    padding: 0 !important;
    margin: 0 !important;

    background: transparent !important;
    border: none !important;
    box-shadow: none !important;

    overflow: visible !important;
    z-index: 2147483646 !important;
    pointer-events: auto !important;
  }

  #userStatusArea.user-status-panel::before {
    display: none !important;
    content: none !important;
  }

  #userStatusArea.user-status-panel.open,
  #userStatusArea.user-status-panel.active,
  #userStatusArea.user-status-panel.mobile-open,
  #userStatusArea.user-status-panel.show,
  body.profile-open #userStatusArea.user-status-panel {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  #userStatusArea.user-status-panel .user-mini-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;

    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;

    padding: 22px 18px !important;
    border-radius: 24px !important;

    background:
      linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.035)),
      rgba(0,8,14,0.975) !important;

    border: 1px solid rgba(0,247,255,0.48) !important;

    box-shadow:
      0 0 28px rgba(0,247,255,0.42),
      0 0 56px rgba(255,56,248,0.22),
      0 20px 60px rgba(0,0,0,0.75) !important;

    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
  }

  #userStatusArea.user-status-panel .user-mini-card .button-glow-small,
  #userStatusArea.user-status-panel .user-mini-card button,
  #userStatusArea.user-status-panel .user-mini-card a {
    width: 100% !important;
  }

  .ssx-global-app-qr {
    display: none !important;
  }
}

/* =========================================================
   SO SMOOTH X — WEBSITE FORGOT PASSWORD
========================================================= */

#forgotPasswordBtn.ssx-forgot-password-btn {
  appearance: none;
  -webkit-appearance: none;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  width: auto;
  min-height: 38px;

  margin: 4px auto 14px;
  padding: 7px 14px;

  border: 0;
  background: transparent;

  color: #9cfaff;

  font: inherit;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.02em;

  text-decoration: underline;
  text-underline-offset: 4px;

  cursor: pointer;
  touch-action: manipulation;

  transition:
    color 160ms ease,
    text-shadow 160ms ease,
    transform 160ms ease;
}

#forgotPasswordBtn.ssx-forgot-password-btn:hover,
#forgotPasswordBtn.ssx-forgot-password-btn:focus-visible {
  color: #ffffff;

  text-shadow:
    0 0 10px rgba(0, 238, 255, 0.85),
    0 0 20px rgba(232, 70, 255, 0.50);

  outline: none;
}

#forgotPasswordBtn.ssx-forgot-password-btn:active {
  transform: scale(0.98);
}

#forgotPasswordBtn.ssx-forgot-password-btn:disabled {
  opacity: 0.58;
  cursor: wait;
}

#forgotPasswordBtn.ssx-forgot-password-btn i {
  pointer-events: none;
}

/* =========================================================
   END WEBSITE FORGOT PASSWORD
========================================================= */



/* =========================================================
   SO SMOOTH X — WEBSITE PREMIUM NOTIFICATION TOAST
========================================================= */

.ssx-website-toast-container {
  position: fixed;

  top:
    calc(
      env(safe-area-inset-top, 0px) +
      24px
    );

  left: 50%;

  width:
    min(
      calc(100% - 32px),
      520px
    );

  z-index: 2147483647;

  pointer-events: none;

  transform:
    translateX(-50%);
}

.ssx-website-toast {
  position: relative;

  display: grid;

  grid-template-columns:
    52px minmax(0, 1fr) 42px;

  align-items: center;

  gap: 14px;

  width: 100%;

  padding: 16px 14px 16px 16px;

  box-sizing: border-box;

  border:
    2px solid
    rgba(0, 237, 255, 0.74);

  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      rgba(3, 28, 44, 0.985),
      rgba(11, 18, 48, 0.985),
      rgba(38, 8, 56, 0.985)
    );

  box-shadow:
    0 24px 70px
    rgba(0, 0, 0, 0.62),

    0 0 34px
    rgba(0, 227, 255, 0.26),

    inset 0 0 28px
    rgba(222, 67, 255, 0.09);

  color: #ffffff;

  opacity: 0;

  transform:
    translateY(-18px)
    scale(0.97);

  transition:
    opacity 200ms ease,
    transform 200ms ease;

  pointer-events: auto;

  overflow: hidden;
}

.ssx-website-toast::before {
  content: "";

  position: absolute;

  inset: 0 auto 0 0;

  width: 5px;

  background:
    linear-gradient(
      180deg,
      #00ecff,
      #ec4bff
    );

  box-shadow:
    0 0 18px
    rgba(0, 235, 255, 0.78);
}

.ssx-website-toast--visible {
  opacity: 1;

  transform:
    translateY(0)
    scale(1);
}

.ssx-website-toast--leaving {
  opacity: 0;

  transform:
    translateY(-12px)
    scale(0.985);
}

.ssx-website-toast__icon {
  display: grid;

  place-items: center;

  width: 48px;
  height: 48px;

  border-radius: 50%;

  color: #ffffff;

  background:
    radial-gradient(
      circle at 35% 30%,
      rgba(255, 255, 255, 0.22),
      rgba(0, 225, 255, 0.22) 48%,
      rgba(219, 60, 255, 0.20)
    );

  box-shadow:
    0 0 20px
    rgba(0, 231, 255, 0.34);

  font-size: 23px;
}

.ssx-website-toast--success {
  border-color:
    rgba(0, 255, 196, 0.78);
}

.ssx-website-toast--success::before {
  background:
    linear-gradient(
      180deg,
      #00ffc3,
      #00b5ff
    );
}

.ssx-website-toast--success
.ssx-website-toast__icon {
  color: #dffff6;
}

.ssx-website-toast--error {
  border-color:
    rgba(255, 82, 132, 0.82);
}

.ssx-website-toast--error::before {
  background:
    linear-gradient(
      180deg,
      #ff4e88,
      #ff914d
    );
}

.ssx-website-toast--error
.ssx-website-toast__icon {
  color: #ffe5ee;
}

.ssx-website-toast__content {
  min-width: 0;
}

.ssx-website-toast__title {
  display: block;

  margin: 0 0 4px;

  color: #ffffff;

  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  text-shadow:
    0 0 10px
    rgba(0, 235, 255, 0.42);
}

.ssx-website-toast__message {
  margin: 0;

  color:
    rgba(240, 249, 255, 0.90);

  font-size: 0.95rem;
  line-height: 1.45;

  overflow-wrap: anywhere;
}

.ssx-website-toast__close {
  appearance: none;
  -webkit-appearance: none;

  display: grid;

  place-items: center;

  width: 38px;
  height: 38px;

  margin: 0;
  padding: 0;

  border:
    1px solid
    rgba(142, 237, 255, 0.34);

  border-radius: 50%;

  background:
    rgba(255, 255, 255, 0.05);

  color: #ffffff;

  cursor: pointer;

  touch-action: manipulation;

  transition:
    background 150ms ease,
    transform 150ms ease,
    border-color 150ms ease;
}

.ssx-website-toast__close:hover,
.ssx-website-toast__close:focus-visible {
  border-color:
    rgba(0, 239, 255, 0.74);

  background:
    rgba(0, 220, 255, 0.14);

  outline: none;
}

.ssx-website-toast__close:active {
  transform: scale(0.94);
}

.ssx-website-toast__close i {
  pointer-events: none;
}

@media (max-width: 600px) {

  .ssx-website-toast-container {
    top:
      calc(
        env(safe-area-inset-top, 0px) +
        14px
      );

    width:
      calc(100% - 24px);
  }

  .ssx-website-toast {
    grid-template-columns:
      44px minmax(0, 1fr) 36px;

    gap: 10px;

    padding:
      14px 10px 14px 13px;

    border-radius: 18px;
  }

  .ssx-website-toast__icon {
    width: 42px;
    height: 42px;

    font-size: 20px;
  }

  .ssx-website-toast__title {
    font-size: 0.90rem;
  }

  .ssx-website-toast__message {
    font-size: 0.87rem;
  }

  .ssx-website-toast__close {
    width: 34px;
    height: 34px;
  }
}

/* =========================================================
   END WEBSITE PREMIUM NOTIFICATION TOAST
========================================================= */

