/* =========================================================
   J STAR ENTERTAINMENT LLC
   SUPREME NUCLEAR MAXIMUM LUXURY FUTURISTIC MASTER CSS
   TRUE 10/10 FINAL PASS
   Full Production Ready
   Visitor-First • Luxury • Futuristic • Responsive
   Global centered titles + subtitles
========================================================= */

/* =========================================================
   1) ROOT TOKENS
========================================================= */
:root {
  --bg-1: #03060d;
  --bg-2: #07111b;
  --bg-3: #0a1623;
  --bg-4: #0d1f2c;
  --bg-5: #11273a;

  --surface-1: rgba(8, 18, 30, 0.70);
  --surface-2: rgba(10, 24, 38, 0.82);
  --surface-3: rgba(12, 29, 44, 0.90);
  --surface-card: rgba(9, 21, 35, 0.72);
  --surface-soft: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.08);

  --line-soft: rgba(255, 255, 255, 0.08);
  --line-mid: rgba(255, 255, 255, 0.14);
  --line-glow: rgba(0, 240, 255, 0.28);
  --line-strong: rgba(0, 240, 255, 0.55);
  --line-magenta: rgba(255, 73, 199, 0.35);

  --cyan: #00f0ff;
  --cyan-2: #78f7ff;
  --blue: #5db8ff;
  --violet: #8c7dff;
  --magenta: #ff49c7;
  --gold: #ffd76a;
  --white: #ffffff;
  --text-soft: #d7edf4;
  --text-mid: #a8c6d2;
  --text-dim: #7f9aa8;
  --text-muted: #6d8794;

  --shadow-soft:
    0 10px 30px rgba(0, 0, 0, 0.25),
    0 0 18px rgba(0, 240, 255, 0.08);

  --shadow-card:
    0 15px 40px rgba(0, 0, 0, 0.36),
    0 0 30px rgba(0, 240, 255, 0.10),
    0 0 70px rgba(255, 73, 199, 0.08);

  --shadow-card-strong:
    0 20px 48px rgba(0, 0, 0, 0.42),
    0 0 34px rgba(0, 240, 255, 0.12),
    0 0 80px rgba(255, 73, 199, 0.10);

  --shadow-hero:
    0 0 22px rgba(0, 240, 255, 0.24),
    0 0 48px rgba(255, 73, 199, 0.12);

  --glow-cyan:
    0 0 8px rgba(0, 240, 255, 0.60),
    0 0 22px rgba(0, 240, 255, 0.28);

  --glow-magenta:
    0 0 10px rgba(255, 73, 199, 0.50),
    0 0 24px rgba(255, 73, 199, 0.20);

  --glow-gold:
    0 0 10px rgba(255, 215, 106, 0.45),
    0 0 20px rgba(255, 215, 106, 0.18);

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

  --container: 1320px;
  --container-wide: 1460px;
  --container-narrow: 980px;
  --container-legal: 1080px;

  --nav-height: 150px;
  --transition-fast: 0.22s ease;
  --transition-med: 0.38s ease;
  --transition-slow: 0.65s ease;
}

/* =========================================================
   2) RESET
========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

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

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

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

ul,
ol {
  list-style: none;
}

/* =========================================================
   3) BODY / BACKGROUND SYSTEM
========================================================= */
body {
  min-height: 100vh;
  font-family: 'Montserrat', sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 240, 255, 0.12), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(255, 73, 199, 0.10), transparent 24%),
    radial-gradient(circle at 50% 85%, rgba(93, 184, 255, 0.10), transparent 30%),
    linear-gradient(180deg, #02040a 0%, #050b13 20%, #07111b 55%, #03060d 100%);
  background-attachment: fixed;
  position: relative;
  line-height: 1.6;
  padding-top: var(--nav-height);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.15;
  z-index: -3;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at center, transparent 35%, rgba(0,0,0,0.38) 100%);
  z-index: -2;
}

body {
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 240, 255, 0.12), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(255, 73, 199, 0.10), transparent 24%),
    radial-gradient(circle at 50% 85%, rgba(93, 184, 255, 0.10), transparent 30%),
    url("assets/background.png"),
    linear-gradient(180deg, #02040a 0%, #050b13 20%, #07111b 55%, #03060d 100%);

  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* =========================================================
   4) GLOBAL HELPERS
========================================================= */
.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.container-wide {
  width: min(100% - 32px, var(--container-wide));
  margin-inline: auto;
}

.container-narrow {
  width: min(100% - 32px, var(--container-narrow));
  margin-inline: auto;
}

.legal-wrap,
.policy-wrap,
.terms-wrap {
  width: min(100% - 32px, var(--container-legal));
  margin-inline: auto;
}

.section,
.page-section,
.content-section {
  position: relative;
  padding: 92px 0;
  z-index: 1;
}

.section-tight {
  padding: 70px 0;
}

.section-lg {
  padding: 118px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
}

.section-divider {
  position: relative;
}

.section-divider::after {
  content: "";
  display: block;
  width: min(160px, 40%);
  height: 1px;
  margin: 32px auto 0;
  background: linear-gradient(90deg, transparent, rgba(0,240,255,0.5), rgba(255,73,199,0.38), transparent);
}

.glass-panel,
.glow-box,
.album-description-box,
.main-panel {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02)),
    var(--surface-1);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(16px) saturate(145%);
  -webkit-backdrop-filter: blur(16px) saturate(145%);
}

.glow-border {
  position: relative;
}

.glow-border::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(0,240,255,0.72),
    rgba(255,73,199,0.46),
    rgba(255,215,106,0.42)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.85;
  pointer-events: none;
}

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

.eyebrow {
  display: flex;
  width: fit-content;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 0 auto 16px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 240, 255, 0.28);
  background: rgba(0, 240, 255, 0.08);
  color: var(--cyan-2);
  font-size: 0.86rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  box-shadow: var(--glow-cyan);
  text-align: center;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--cyan) 0%, transparent 70%);
  box-shadow: 0 0 14px rgba(0, 240, 255, 0.55);
}
/* =========================================================
   5) GLOBAL TYPOGRAPHY
========================================================= */
h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.page-title,
.hero-title,
.card-title,
.subtitle,
.section-subtitle,
.page-subtitle,
.hero-subtitle,
.main-title-glow,
.subsection-title,
.connect-title,
.faq-title {
  text-align: center;
}

h1,
h2,
h3,
h4,
.section-title,
.page-title,
.hero-title,
.card-title,
.main-title-glow,
.subsection-title,
.connect-title,
.faq-title {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.03em;
  line-height: 1.1;
}

h1,
.hero-title,
.page-title,
.main-title-glow {
  font-size: clamp(2.6rem, 5vw, 5.6rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--white);
  text-shadow:
    0 0 12px rgba(255,255,255,0.18),
    0 0 24px rgba(0,240,255,0.14),
    0 0 42px rgba(255,73,199,0.08);
}

h2,
.section-title,
.subsection-title,
.connect-title,
.faq-title {
  font-size: clamp(2rem, 3.8vw, 3.3rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--white);
  text-shadow:
    0 0 10px rgba(255,255,255,0.10),
    0 0 20px rgba(0,240,255,0.12);
}

h3,
.card-title {
  font-size: clamp(1.12rem, 2vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--white);
}

h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

p,
li,
.body-copy,
.album-description,
.footer-tagline {
  color: var(--text-soft);
  font-size: 1.03rem;
}

.section-subtitle,
.page-subtitle,
.hero-subtitle,
.subtitle,
.album-description,
.connect-section p {
  width: min(100%, 860px);
  margin: 0 auto 34px;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  color: var(--text-mid);
  line-height: 1.8;
  text-shadow: 0 0 14px rgba(0, 240, 255, 0.04);
  text-align: center;
}

.hero-title .accent,
.section-title .accent,
.page-title .accent,
.main-title-glow .accent {
  background: linear-gradient(90deg, var(--cyan), var(--cyan-2), var(--white));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient {
  background: linear-gradient(90deg, var(--cyan), var(--cyan-2), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gold {
  color: var(--gold);
}

.text-center {
  text-align: center !important;
}

/* =========================================================
   6) BUTTON SYSTEM
========================================================= */
.btn-row,
.connect-buttons,
.hero-button-group,
.hero-buttons,
.hero-cta,
.form-actions,
.faq-button-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.btn,
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-ghost,
.btn-glow,
.connect-btn,
.faq-button,
.hero-btn,
.hero-cta-btn,
.restart-btn,
button[type="submit"],
input[type="submit"] {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition:
    transform var(--transition-fast),
    border-color var(--transition-fast),
    background var(--transition-fast),
    box-shadow var(--transition-fast),
    color var(--transition-fast);
  overflow: hidden;
  text-align: center;
}

.btn::after,
.btn-primary::after,
.btn-secondary::after,
.btn-outline::after,
.btn-ghost::after,
.btn-glow::after,
.connect-btn::after,
.faq-button::after,
.hero-btn::after,
.hero-cta-btn::after,
.restart-btn::after,
button[type="submit"]::after,
input[type="submit"]::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 18%, rgba(255,255,255,0.20) 50%, transparent 82%);
  transform: translateX(-120%);
  transition: transform 0.85s ease;
}

.btn:hover::after,
.btn-primary:hover::after,
.btn-secondary:hover::after,
.btn-outline:hover::after,
.btn-ghost:hover::after,
.btn-glow:hover::after,
.connect-btn:hover::after,
.faq-button:hover::after,
.hero-btn:hover::after,
.hero-cta-btn:hover::after,
.restart-btn:hover::after,
button[type="submit"]:hover::after,
input[type="submit"]:hover::after {
  transform: translateX(120%);
}

.btn:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-outline:hover,
.btn-ghost:hover,
.btn-glow:hover,
.connect-btn:hover,
.faq-button:hover,
.hero-btn:hover,
.hero-cta-btn:hover,
.restart-btn:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
  transform: translateY(-3px) scale(1.02);
}

.btn-primary,
.btn-glow,
.hero-btn,
.hero-cta-btn,
.restart-btn,
.connect-btn,
button[type="submit"],
input[type="submit"] {
  color: #02131b;
  background: linear-gradient(135deg, var(--cyan-2), var(--cyan), #59d4ff);
  box-shadow:
    0 10px 24px rgba(0, 240, 255, 0.20),
    0 0 24px rgba(0, 240, 255, 0.22);
}

.btn-primary:hover,
.btn-glow:hover,
.hero-btn:hover,
.hero-cta-btn:hover,
.restart-btn:hover,
.connect-btn:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
  box-shadow:
    0 14px 28px rgba(0, 240, 255, 0.26),
    0 0 34px rgba(0, 240, 255, 0.28);
}

.btn-secondary {
  color: var(--white);
  background: linear-gradient(135deg, rgba(255, 73, 199, 0.95), rgba(140, 125, 255, 0.92));
  box-shadow:
    0 10px 24px rgba(255, 73, 199, 0.16),
    0 0 22px rgba(255, 73, 199, 0.22);
}

.btn-outline,
.faq-button {
  color: var(--cyan-2);
  background: rgba(255,255,255,0.02);
  border-color: rgba(0,240,255,0.38);
  box-shadow: inset 0 0 0 1px rgba(0,240,255,0.10), var(--glow-cyan);
}

.btn-outline:hover,
.faq-button:hover {
  background: rgba(0,240,255,0.10);
  color: var(--white);
}

.btn-ghost {
  color: var(--white);
  background: rgba(255,255,255,0.04);
  border-color: var(--line-soft);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
}

/* =========================================================
   7) NAVIGATION
========================================================= */
.navbar,
.site-header,
.top-nav,
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 10000;
  background:
    linear-gradient(180deg, rgba(3, 8, 16, 0.92), rgba(3, 8, 16, 0.76));
  border-bottom: 1px solid rgba(0, 240, 255, 0.14);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  box-shadow:
    0 8px 20px rgba(0,0,0,0.30),
    0 0 24px rgba(0, 240, 255, 0.08);
}

.nav-inner,
.nav-wrapper {
  width: min(100% - 32px, var(--container));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-left,
.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.logo,
.brand-logo,
.logo-text {
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: clamp(1.2rem, 1.6vw, 1.7rem);
  letter-spacing: 0.18em;
  color: var(--white);
  text-transform: uppercase;
  text-shadow: var(--glow-cyan);
}

.logo img,
.brand-logo img,
.logo-spin {
  width: 100px;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 0 12px rgba(0,240,255,0.38))
    drop-shadow(0 0 26px rgba(255,73,199,0.14));
  transition: transform var(--transition-med), filter var(--transition-med);
}

.logo img:hover,
.brand-logo img:hover,
.logo-spin:hover {
  transform: rotate(8deg) scale(1.05);
}

.nav-links,
.menu-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex: 1;
}

.nav-links a,
.menu-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 14px;
  color: var(--text-soft);
  font-weight: 600;
  transition: all var(--transition-fast);
}

.nav-links a::before,
.menu-links a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0,240,255,0.12), rgba(255,73,199,0.10));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active,
.menu-links a:hover,
.menu-links a.active {
  color: var(--white);
  box-shadow:
    inset 0 0 0 1px rgba(0,240,255,0.20),
    0 0 20px rgba(0,240,255,0.10);
}

.nav-links a:hover::before,
.nav-links a.active::before,
.menu-links a:hover::before,
.menu-links a.active::before {
  opacity: 1;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* =========================================================
   8) MOBILE HAMBURGER / MOBILE NAV
========================================================= */
.hamburger,
.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(0, 240, 255, 0.24);
  background: rgba(255,255,255,0.04);
  color: var(--cyan-2);
  cursor: pointer;
  box-shadow: var(--glow-cyan);
  transition: all var(--transition-fast);
}

.hamburger:hover,
.menu-toggle:hover {
  transform: scale(1.04);
  background: rgba(0, 240, 255, 0.10);
}

.hamburger.open,
.menu-toggle.open {
  transform: rotate(90deg) scale(1.05);
  color: var(--white);
  box-shadow:
    0 0 16px rgba(0,240,255,0.26),
    0 0 26px rgba(255,73,199,0.18);
}

.hamburger i,
.menu-toggle i,
.hamburger span,
.menu-toggle span {
  pointer-events: none;
  transition: transform var(--transition-fast);
}

/* =========================================================
   9) HERO SYSTEM
========================================================= */
.hero,
.hero-section,
.page-hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 86px 0 72px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before,
.hero-section::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 22%, rgba(0,240,255,0.12), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(255,73,199,0.10), transparent 26%),
    radial-gradient(circle at 50% 70%, rgba(93,184,255,0.08), transparent 30%);
  z-index: -2;
}

.hero::after,
.hero-section::after,
.page-hero::after {
  content: "";
  position: absolute;
  width: 720px;
  height: 720px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle, rgba(0,240,255,0.16), rgba(255,73,199,0.05) 42%, transparent 68%);
  filter: blur(24px);
  opacity: 0.65;
  z-index: -1;
  animation: heroPulse 8s ease-in-out infinite;
}

@keyframes heroPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(0.96);
    opacity: 0.56;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.08);
    opacity: 0.82;
  }
}

.hero-content,
.hero-inner {
  width: min(100% - 32px, 1100px);
  margin-inline: auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-title {
  max-width: 1000px;
  margin-inline: auto;
}

.hero-subtitle {
  max-width: 860px;
}

.hero-card,
.mission-box,
.about-square {
  width: min(100%, 980px);
  margin: 30px auto 0;
  padding: 28px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
    rgba(10, 24, 38, 0.62);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-hero);
  backdrop-filter: blur(16px);
}

.hero-stats,
.stats-grid,
.deliver-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.stat-card,
.deliver-item {
  padding: 20px 16px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}

.stat-number {
  display: block;
  margin-bottom: 6px;
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  color: var(--cyan-2);
  text-align: center;
}

.stat-label,
.deliver-item p {
  text-align: center;
  color: var(--text-mid);
  font-size: 0.95rem;
}

.deliver-title {
  margin-top: 36px;
}

.deliver-item .icon {
  display: block;
  margin-bottom: 10px;
  font-size: 1.75rem;
  text-align: center;
}

/* =========================================================
   10) SECTION HEADERS / WRAPPERS
========================================================= */
.section-header {
  margin-bottom: 34px;
}

.section-header .section-title,
.section-header .section-subtitle {
  max-width: 920px;
  margin-inline: auto;
}

/* =========================================================
   11) CARD SYSTEM
========================================================= */
.card-grid,
.album-grid {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.brand-card,
.service-card,
.news-card,
.info-card,
.feature-card,
.contact-card,
.faq-item,
.legal-card,
.album-card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
    var(--surface-card);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(14px) saturate(145%);
  -webkit-backdrop-filter: blur(14px) saturate(145%);
  overflow: hidden;
  transition:
    transform var(--transition-med),
    box-shadow var(--transition-med),
    border-color var(--transition-med),
    background var(--transition-med);
}

.card::before,
.brand-card::before,
.service-card::before,
.news-card::before,
.info-card::before,
.feature-card::before,
.contact-card::before,
.faq-item::before,
.legal-card::before,
.album-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(0,240,255,0.12), transparent 30%),
    radial-gradient(circle at bottom right, rgba(255,73,199,0.10), transparent 28%);
  opacity: 0;
  transition: opacity var(--transition-med);
  pointer-events: none;
}

.card:hover,
.brand-card:hover,
.service-card:hover,
.news-card:hover,
.info-card:hover,
.feature-card:hover,
.contact-card:hover,
.faq-item:hover,
.legal-card:hover,
.album-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,240,255,0.20);
  box-shadow:
    0 18px 46px rgba(0,0,0,0.42),
    0 0 26px rgba(0,240,255,0.12),
    0 0 56px rgba(255,73,199,0.08);
}

.card:hover::before,
.brand-card:hover::before,
.service-card:hover::before,
.news-card:hover::before,
.info-card:hover::before,
.feature-card:hover::before,
.contact-card:hover::before,
.faq-item:hover::before,
.legal-card:hover::before,
.album-card:hover::before {
  opacity: 1;
}

.card-title,
.brand-card h3,
.service-card h3,
.news-card h3,
.info-card h3,
.feature-card h3,
.contact-card h3,
.album-card h3 {
  margin-bottom: 14px;
}

.card p,
.brand-card p,
.service-card p,
.news-card p,
.info-card p,
.feature-card p,
.contact-card p,
.album-card p {
  text-align: center;
}

.card-icon,
.service-icon,
.brand-icon,
.contact-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0,240,255,0.18), rgba(255,73,199,0.12));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    0 0 22px rgba(0,240,255,0.12),
    inset 0 0 22px rgba(255,255,255,0.02);
}

.featured-card,
.news-card.featured,
.brand-card.featured {
  border-color: rgba(255,215,106,0.24);
  box-shadow:
    0 18px 46px rgba(0,0,0,0.42),
    0 0 22px rgba(255,215,106,0.12),
    0 0 50px rgba(255,73,199,0.08);
}

.compact-card {
  padding: 20px;
}

/* =========================================================
   12) PAGE BLOCKS
========================================================= */
.brand-grid,
.services-grid,
.news-grid,
.contact-grid,
.faq-grid,
.legal-grid,
.news-list {
  display: grid;
  gap: 24px;
}

.brand-grid,
.services-grid,
.news-grid,
.album-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.legal-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-split,
.about-split,
.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.feature-panel,
.about-panel,
.cta-panel {
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
    var(--surface-2);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-card);
}

.feature-panel p,
.about-panel p,
.cta-panel p {
  text-align: center;
}

/* Legacy sections */
.connect-section,
.more-coming-soon {
  width: min(100% - 32px, var(--container-narrow));
  margin: 32px auto 0;
  padding: 28px;
  border-radius: var(--radius-xl);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
    var(--surface-2);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-card);
  color: var(--text-soft);
}

.more-coming-soon {
  font-size: 1.05rem;
}

.founder-quote {
  width: min(100% - 32px, 980px);
  margin: 36px auto 0;
  padding: 30px;
  text-align: center;
  font-size: 1.15rem;
  color: var(--text-soft);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
    var(--surface-2);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-card);
}

.founder-quote span {
  display: block;
  margin-top: 14px;
  color: var(--text-mid);
  font-size: 0.96rem;
}

/* =========================================================
   13) FORMS
========================================================= */
form,
.contact-form,
.email-signup,
.newsletter-form {
  width: 100%;
}

.form-grid {
  display: grid;
  gap: 18px;
}

.form-grid.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-card {
  padding: 30px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
    var(--surface-2);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-card);
}

label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-soft);
  font-weight: 600;
  text-align: left;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
textarea,
select {
  width: 100%;
  min-height: 56px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  color: var(--white);
  outline: none;
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast),
    background var(--transition-fast);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}

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

input::placeholder,
textarea::placeholder {
  color: rgba(215, 237, 244, 0.48);
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(0,240,255,0.34);
  background: rgba(255,255,255,0.06);
  box-shadow:
    0 0 0 4px rgba(0,240,255,0.08),
    0 0 22px rgba(0,240,255,0.12);
  transform: translateY(-1px);
}

/* =========================================================
   14) FAQ ACCORDION
========================================================= */
.faq-list {
  display: grid;
  gap: 18px;
}

.faq-item {
  padding: 0;
}

.faq-question {
  position: relative;
  width: 100%;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  background: transparent;
  border: none;
  color: var(--white);
}

.faq-question span,
.faq-question h3 {
  flex: 1;
  margin: 0;
  text-align: center;
  font-size: 1.04rem;
  font-family: 'Orbitron', sans-serif;
}

.faq-question i,
.faq-question .icon {
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--cyan-2);
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.faq-item.active .faq-question i,
.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
  color: var(--magenta);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-med), padding var(--transition-med);
  padding: 0 24px;
}

.faq-answer p,
.faq-answer div {
  text-align: center;
  color: var(--text-mid);
  padding-bottom: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 24px;
}

/* =========================================================
   15) NEWS / MEDIA BLOCKS
========================================================= */
.news-card img,
.media-card img,
.brand-card img,
.album-card img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,0.08);
}

.news-meta,
.card-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--text-dim);
  font-size: 0.88rem;
}

.news-list .news-card,
.news-article {
  padding: 24px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
    var(--surface-card);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-card);
}

.news-list .news-card h3,
.news-article h3 {
  margin-bottom: 12px;
}

.news-list .news-card a,
.news-article a {
  color: var(--white);
}

.news-list .news-card a:hover,
.news-article a:hover {
  color: var(--cyan-2);
}

.tag-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tag,
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cyan-2);
  background: rgba(0,240,255,0.08);
  border: 1px solid rgba(0,240,255,0.18);
}

/* =========================================================
   16) LEGAL / POLICY / TERMS CONTENT
========================================================= */
.legal-card,
.policy-card,
.terms-card {
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
    var(--surface-2);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-card);
}

.legal-card h2,
.policy-card h2,
.terms-card h2,
.legal-card h3,
.policy-card h3,
.terms-card h3 {
  margin-top: 20px;
}

.legal-card p,
.policy-card p,
.terms-card p,
.legal-card li,
.policy-card li,
.terms-card li {
  text-align: center;
  color: var(--text-soft);
}

.legal-card ul,
.policy-card ul,
.terms-card ul,
.legal-card ol,
.policy-card ol,
.terms-card ol,
.glow-list,
.clean-terms-list {
  display: grid;
  gap: 18px;
  margin-top: 16px;
}

.glow-list li,
.clean-terms-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.term-number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,240,255,0.18), rgba(255,73,199,0.14));
  color: var(--white);
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
}

.term-content h3 {
  margin-bottom: 10px;
}

.term-content p {
  margin-bottom: 0;
}

/* =========================================================
   17) FOOTER
========================================================= */
footer,
.site-footer,
.footer {
  position: relative;
  margin-top: 60px;
  padding: 34px 16px 48px;
  border-top: 1px solid rgba(0, 240, 255, 0.10);
  background:
    linear-gradient(180deg, rgba(5, 10, 18, 0.36), rgba(3, 7, 12, 0.84));
  box-shadow:
    0 -10px 30px rgba(0,0,0,0.20),
    0 0 24px rgba(0,240,255,0.06);
}

.footer-inner {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
  display: grid;
  gap: 18px;
  justify-items: center;
}

.footer-links,
.footer-social,
.social-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
}

.footer-links a,
.footer-social a,
.social-icons a {
  color: var(--text-mid);
  transition: color var(--transition-fast), text-shadow var(--transition-fast), transform var(--transition-fast);
}

.footer-links a:hover,
.footer-social a:hover,
.social-icons a:hover {
  color: var(--white);
  text-shadow: var(--glow-cyan);
  transform: translateY(-2px);
}

.footer p,
.footer-copy,
.site-footer p {
  text-align: center;
  color: var(--text-dim);
  font-size: 0.95rem;
}

.social-btn,
.social-icons a {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-soft);
}

/* =========================================================
   18) POPUPS / MODALS / ALERTS
========================================================= */
.popup-message,
.win-popup,
.modal,
.overlay-modal {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: rgba(2, 6, 12, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 30000;
}

.popup-box,
.win-box,
.modal-box {
  width: min(100%, 520px);
  padding: 30px;
  border-radius: var(--radius-xl);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02)),
    var(--surface-2);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    0 18px 44px rgba(0,0,0,0.42),
    0 0 30px rgba(0,240,255,0.16),
    0 0 56px rgba(255,73,199,0.10);
}

.popup-box h3,
.win-box h3,
.modal-box h3 {
  margin-bottom: 14px;
}

.popup-box p,
.win-box p,
.modal-box p {
  text-align: center;
}

/* =========================================================
   19) MEMORY GAME
========================================================= */
.memory-game-section {
  text-align: center;
}

.memory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 560px;
  margin: 28px auto 0;
}

.memory-card {
  perspective: 1100px;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.memory-card:hover {
  transform: scale(1.03);
}

.card-inner {
  width: 100%;
  padding-top: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.25, 1, 0.3, 1);
}

.memory-card.flipped .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  backface-visibility: hidden;
  box-shadow: 0 0 15px #00ffff99, 0 0 40px #ff00ff77;
}

.card-front {
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid #00ffffbb;
  backdrop-filter: blur(4px);
}

.card-front-img {
  width: 78%;
  height: auto;
  filter: drop-shadow(0 0 10px #00ffffaa) drop-shadow(0 0 20px #ff00ffaa);
}

.card-back {
  transform: rotateY(180deg);
  background: rgba(0, 0, 0, 0.85);
  border: 2px dashed #ff00f0aa;
  font-size: 2.1rem;
  color: #ffffff;
  text-shadow: 0 0 10px #ff00ff, 0 0 20px #00ffff;
}

/* =========================================================
   20) DECORATIVE LAYERS
========================================================= */
.stars,
.shooting-stars,
.strobelight-background,
.particles,
.hero-overlay {
  pointer-events: none;
}

.stars {
  position: fixed;
  inset: 0;
  z-index: -4;
  opacity: 0.30;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.95), transparent 65%),
    radial-gradient(1.5px 1.5px at 70% 40%, rgba(120,247,255,0.95), transparent 65%),
    radial-gradient(1.5px 1.5px at 40% 80%, rgba(255,73,199,0.88), transparent 65%),
    radial-gradient(2px 2px at 85% 12%, rgba(255,255,255,0.90), transparent 65%),
    radial-gradient(2px 2px at 10% 75%, rgba(93,184,255,0.90), transparent 65%);
  animation: twinkle 6s ease-in-out infinite alternate;
}

@keyframes twinkle {
  0% { opacity: 0.18; transform: scale(1); }
  50% { opacity: 0.34; }
  100% { opacity: 0.22; transform: scale(1.02); }
}

.shooting-stars {
  position: fixed;
  inset: 0;
  z-index: -4;
  overflow: hidden;
}

.shooting-stars::before,
.shooting-stars::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(120,247,255,0.88), rgba(255,255,255,0));
  filter: drop-shadow(0 0 12px rgba(0,240,255,0.48));
  transform: rotate(45deg); /* 🔥 updated angle */
  animation: shootingStar 10s linear infinite;
}

.shooting-stars::before {
  top: 18%;
  left: -260px;
  animation-delay: 0s;
}

.shooting-stars::after {
  top: 42%;
  left: -300px;
  animation-delay: 4.2s;
}

@keyframes shootingStar {
  0% {
    transform: translateX(0) translateY(0) rotate(45deg);
    opacity: 0;
  }
  10% { opacity: 1; }
  100% {
    transform: translateX(1700px) translateY(280px) rotate(45deg);
    opacity: 0;
  }
}

.strobelight-background {
  position: fixed;
  inset: 0;
  z-index: -5;
  background:
    radial-gradient(circle at 25% 20%, rgba(0,240,255,0.07), transparent 28%),
    radial-gradient(circle at 75% 25%, rgba(255,73,199,0.07), transparent 28%),
    radial-gradient(circle at 55% 70%, rgba(93,184,255,0.05), transparent 28%);
  animation: strobeFloat 12s ease-in-out infinite alternate;
}

@keyframes strobeFloat {
  0% { transform: scale(1) translateY(0); opacity: 0.80; }
  100% { transform: scale(1.04) translateY(-12px); opacity: 1; }
}

/* =========================================================
   21) UTILITIES
========================================================= */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 10px !important; }
.mt-2 { margin-top: 18px !important; }
.mt-3 { margin-top: 28px !important; }
.mt-4 { margin-top: 40px !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 10px !important; }
.mb-2 { margin-bottom: 18px !important; }
.mb-3 { margin-bottom: 28px !important; }
.mb-4 { margin-bottom: 40px !important; }

.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }

.hidden {
  display: none !important;
}

.center-block {
  margin-inline: auto !important;
}

.max-700 { max-width: 700px; margin-inline: auto; }
.max-800 { max-width: 800px; margin-inline: auto; }
.max-900 { max-width: 900px; margin-inline: auto; }
.max-1000 { max-width: 1000px; margin-inline: auto; }

/* =========================================================
   22) RESPONSIVE
========================================================= */
@media (max-width: 1200px) {
  .brand-grid,
  .services-grid,
  .news-grid,
  .album-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stats,
  .stats-grid,
  .deliver-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-split,
  .about-split,
  .cta-split,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  :root {
    --nav-height: 82px;
  }

  .nav-links,
  .menu-links,
  .nav-cta .btn-outline,
  .nav-cta .btn-primary {
    display: none;
  }

  .hamburger,
  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links.active,
  .menu-links.active {
    position: absolute;
    top: calc(var(--nav-height) - 8px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 10px;
    padding: 16px;
    background:
      linear-gradient(180deg, rgba(5, 12, 20, 0.96), rgba(5, 12, 20, 0.90));
    border: 1px solid rgba(0,240,255,0.18);
    border-radius: 22px;
    box-shadow:
      0 16px 40px rgba(0,0,0,0.42),
      0 0 24px rgba(0,240,255,0.14);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    animation: mobileMenuDrop 0.28s ease;
  }

  @keyframes mobileMenuDrop {
    from {
      opacity: 0;
      transform: translateY(-10px) scale(0.98);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  .nav-links.active a,
  .menu-links.active a {
    width: 100%;
    min-height: 48px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    color: var(--white);
  }

  h1,
  .hero-title,
  .page-title,
  .main-title-glow {
    font-size: clamp(2.2rem, 9vw, 3.5rem);
  }

  h2,
  .section-title,
  .subsection-title,
  .faq-title,
  .connect-title {
    font-size: clamp(1.7rem, 6vw, 2.6rem);
  }

  .section,
  .page-section,
  .content-section {
    padding: 78px 0;
  }

  .hero,
  .hero-section,
  .page-hero {
    min-height: auto;
    padding: 72px 0 54px;
  }

  .form-grid.two-col,
  .grid-2,
  .grid-3,
  .grid-4,
  .brand-grid,
  .services-grid,
  .news-grid,
  .legal-grid,
  .album-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body {
    padding-top: var(--nav-height);
  }

  .container,
  .container-wide,
  .container-narrow,
  .nav-inner,
  .nav-wrapper,
  .hero-content,
  .hero-inner,
  .legal-wrap,
  .policy-wrap,
  .terms-wrap {
    width: min(100% - 22px, var(--container));
  }

  .card,
  .brand-card,
  .service-card,
  .news-card,
  .info-card,
  .feature-card,
  .contact-card,
  .faq-item,
  .legal-card,
  .feature-panel,
  .about-panel,
  .cta-panel,
  .form-card,
  .hero-card,
  .popup-box,
  .win-box,
  .modal-box,
  .album-card,
  .mission-box,
  .about-square,
  .glow-box {
    padding: 22px;
    border-radius: 22px;
  }

  .btn-row,
  .hero-buttons,
  .hero-cta,
  .form-actions,
  .connect-buttons,
  .faq-button-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .btn,
  .btn-primary,
  .btn-secondary,
  .btn-outline,
  .btn-ghost,
  .btn-glow,
  .connect-btn,
  .faq-button,
  .hero-btn,
  .hero-cta-btn,
  .restart-btn,
  button[type="submit"],
  input[type="submit"] {
    width: 100%;
    max-width: 420px;
  }

  .hero-stats,
  .stats-grid,
  .deliver-grid,
  .memory-grid {
    grid-template-columns: 1fr;
  }

  .faq-question {
    padding: 18px 20px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 20px;
  }

  .glow-list li,
  .clean-terms-list li {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

/* =========================================================
   23) REDUCED MOTION
========================================================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}