@import url("https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@600;700;800&family=JetBrains+Mono:wght@400;500;600;700&display=swap");

:root {
  --bg: #0a0a14;
  --bg-soft: #12121f;
  --card: rgba(30, 35, 60, 0.74);
  --text: #f0f2ff;
  --text-secondary: #a8b0d0;
  --accent: #7dd3fc;
  --accent-hover: #a5f3fc;
  --border: rgba(125, 211, 252, 0.15);
  --shadow-sm: 0 1px 2px rgb(0 0 0 / 0.4);
  --shadow: 0 8px 18px rgb(0 0 0 / 0.45);
  --shadow-lg: 0 24px 50px rgb(0 0 0 / 0.5);
  --radius: 10px;
  --radius-lg: 14px;
  --maxw: 1100px;
  --speed: 220ms;
  --easing: cubic-bezier(0.2, 0.7, 0.2, 1);
  --font-display: "Baloo Bhai 2", cursive;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font-display);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

#main,
main {
  position: relative;
  z-index: 2;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

.container {
  width: min(100% - 3rem, var(--maxw));
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
  position: relative;
}

.section.alt {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Orbit Projects Layout */
.projects-section {
  padding: 5rem 0;
}

.projects-layout {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 380px);
  gap: 3rem;
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 min(3rem, 5vw);
}

.projects-main .section-header {
  text-align: left;
  margin-bottom: 0;
}

.orbit-sidebar {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 320px;
}

.orbit-container {
  position: relative;
  width: 260px;
  height: 260px;
  flex-shrink: 0;
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220px;
  height: 220px;
  margin: -110px 0 0 -110px;
  border: 1px solid rgb(125 211 252 / 0.2);
  border-radius: 50%;
  opacity: 0.5;
}

.orbit-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160px;
  padding: 1.25rem;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(155deg, rgb(30 40 70 / 0.7), rgb(20 30 55 / 0.75));
  border: 2px solid rgb(125 211 252 / 0.2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: all var(--speed) var(--easing);
  text-align: center;
}

.orbit-card:hover {
  border-color: var(--accent);
  transform: var(--orbit-transform) scale(1.08) !important;
  box-shadow: 0 0 30px rgb(125 211 252 / 0.2);
}

.orbit-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.orbit-card-desc {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-family: var(--font-mono);
}

/* Orbit positions: 3 cards at 0°, 120°, 240° */
.orbit-card--1 {
  --orbit-transform: translate(-50%, -50%) rotate(0deg) translateY(-105px) rotate(0deg);
  transform: var(--orbit-transform);
}

.orbit-card--2 {
  --orbit-transform: translate(-50%, -50%) rotate(120deg) translateY(-105px) rotate(-120deg);
  transform: var(--orbit-transform);
}

.orbit-card--3 {
  --orbit-transform: translate(-50%, -50%) rotate(240deg) translateY(-105px) rotate(-240deg);
  transform: var(--orbit-transform);
}

@media (max-width: 900px) {
  .projects-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .projects-main .section-header {
    text-align: center;
  }

  .orbit-sidebar {
    min-height: 380px;
    order: -1;
  }

  .orbit-container {
    width: 100%;
    height: 340px;
  }

  .orbit-ring {
    width: 260px;
    height: 260px;
    margin: -130px 0 0 -130px;
  }

  .orbit-card--1 {
    --orbit-transform: translate(-50%, -50%) rotate(0deg) translateY(-120px) rotate(0deg);
  }

  .orbit-card--2 {
    --orbit-transform: translate(-50%, -50%) rotate(120deg) translateY(-120px) rotate(-120deg);
  }

  .orbit-card--3 {
    --orbit-transform: translate(-50%, -50%) rotate(240deg) translateY(-120px) rotate(-240deg);
  }
}

@media (max-width: 600px) {
  .orbit-sidebar {
    min-height: auto;
  }

  .orbit-container {
    flex-direction: column;
    height: auto;
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
  }

  .orbit-ring {
    display: none;
  }

  .orbit-card,
  .orbit-card--1,
  .orbit-card--2,
  .orbit-card--3 {
    position: static !important;
    transform: none !important;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .orbit-card:hover {
    transform: translateY(-4px) scale(1.02) !important;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 3.2rem;
}

.display {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: 0;
  margin: 0 0 1.5rem;
  font-weight: 800;
  color: var(--text);
  text-shadow: 0 0 18px rgb(0 0 0 / 0.4);
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.lead {
  color: var(--text-secondary);
  font-size: 1.25rem;
  font-weight: 600;
  max-width: 600px;
  margin: 0 auto;
}

.muted {
  color: var(--text-secondary);
  font-family: var(--font-mono);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgb(10 10 25 / 0.7);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  text-decoration: none;
  transition: opacity var(--speed) var(--easing);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand:hover {
  opacity: 0.8;
}

.brand-mark {
  border-radius: 6px;
}

.site-nav {
  display: flex;
  gap: 1.1rem;
}

.site-nav a {
  color: #a8b0d0;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  transition: color var(--speed) var(--easing), border-color var(--speed) var(--easing);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid transparent;
  padding-bottom: 0.2rem;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.hero {
  padding: 8rem 0 6rem;
  text-align: center;
}

.hero-content {
  margin-bottom: 4rem;
}



.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.stats-card {
  background: linear-gradient(155deg, rgb(30 40 70 / 0.6), rgb(20 30 55 / 0.65));
  border: 2px solid rgb(125 211 252 / 0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform var(--speed) var(--easing), box-shadow var(--speed) var(--easing), border-color var(--speed) var(--easing);
  position: relative;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.stats-card::before,
.stats-card::after,
.contact-card::before,
.contact-card::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgb(0 0 0 / 0.55);
  border-radius: 10px;
  pointer-events: none;
}

.stats-card::after,
.contact-card::after {
  inset: 14px;
  border-color: rgb(0 0 0 / 0.35);
}

.stats-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.stats-card--double {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
  grid-column: 1 / -1;
}

.stats-card--triple {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  grid-column: 1 / -1;
}

.stat-currency {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--accent);
}

.stat-earned {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
}

.stat-divider {
  width: 1px;
  height: 4rem;
  background: rgb(125 211 252 / 0.25);
  flex-shrink: 0;
}

.stat-muted {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.stat-visits {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
}

.stat-item {
  text-align: center;
  padding: 0 2rem;
  flex: 1;
}

.stat-label {
  display: block;
  color: #a8b8e0;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-mono);
}

.stat-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.currency {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text);
}

.stat-value span:not(.currency):not(.stat-suffix) {
  font-size: clamp(3rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
}

.stat-suffix {
  font-size: 2rem;
  color: #7dd3fc;
}

.stat-subscribers {
  font-size: clamp(2.5rem, 5vw, 3.5rem) !important;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--speed) var(--easing);
  aspect-ratio: 16/9;
  background: var(--card);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity var(--speed);
}

.gallery-item:hover {
  border-color: var(--accent);
}

.gallery-item:hover img {
  opacity: 0.9;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
}

.video-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--speed) var(--easing);
  aspect-ratio: 16/9;
  background: var(--card);
}

.video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-item::after {
  content: "▶";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: white;
  background: rgba(0, 0, 0, 0.7);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 6px;
  transition: transform var(--speed) var(--easing), background var(--speed);
  backdrop-filter: blur(4px);
}

.video-item:hover {
  border-color: var(--accent);
}

.video-item:hover::after {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--accent);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.game-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform var(--speed) var(--easing), border-color var(--speed);
}

.game-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

.game-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}

.commission-cta-wrap {
  text-align: center;
  margin-bottom: 2.5rem;
}

.commission-cta--footer {
  margin-bottom: 1rem;
}

.commission-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  justify-content: center;
  background: linear-gradient(135deg, rgb(125 211 252 / 0.12), rgb(88 166 255 / 0.08));
  border: 1px solid rgb(125 211 252 / 0.35);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: all var(--speed) var(--easing);
  font-family: var(--font-mono);
}

.commission-cta:hover {
  background: linear-gradient(135deg, rgb(125 211 252 / 0.2), rgb(88 166 255 / 0.15));
  border-color: var(--accent);
  transform: translateY(-2px);
}

.commission-cta-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.commission-cta-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

/* About Section */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
}

.skill-card {
  background: linear-gradient(155deg, rgb(30 40 70 / 0.5), rgb(20 30 55 / 0.55));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: all var(--speed) var(--easing);
}

.skill-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.skill-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.skill-card p {
  margin: 0;
  font-size: 0.85rem;
}

.contact-card {
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(160deg, rgb(30 40 70 / 0.6), rgb(20 30 55 / 0.65));
  border: 2px solid rgb(125 211 252 / 0.15);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.commission-form {
  max-width: 700px;
  margin: 2rem auto 0;
  padding: 2rem;
  background: linear-gradient(155deg, rgb(30 40 70 / 0.6), rgb(20 30 55 / 0.65));
  border: 2px solid rgb(125 211 252 / 0.15);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.75rem;
}

.commission-form h3 {
  margin: 0 0 0.25rem;
  font-size: 1.25rem;
  color: var(--text);
}

.commission-form label {
  margin-top: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.commission-form input,
.commission-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgb(8 12 28 / 0.7);
  color: var(--text);
  padding: 0.7rem 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.92rem;
}

.commission-form input:focus,
.commission-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgb(125 211 252 / 0.2);
}

.commission-form textarea {
  resize: vertical;
  min-height: 90px;
}

.commission-submit {
  margin-top: 0.75rem;
  border: 1px solid rgb(125 211 252 / 0.5);
  border-radius: 8px;
  background: linear-gradient(135deg, rgb(125 211 252 / 0.2), rgb(88 166 255 / 0.18));
  color: var(--text);
  padding: 0.85rem 1rem;
  font-family: var(--font-mono);
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all var(--speed) var(--easing);
}

.commission-submit:hover:not(:disabled) {
  border-color: var(--accent);
  transform: translateY(-1px);
}

.commission-submit:disabled {
  opacity: 0.65;
  cursor: wait;
}

.commission-status {
  min-height: 1.5rem;
  margin: 0.15rem 0 0;
}

.commission-form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.contact-icon {
  font-size: 2rem;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border: 1px solid rgb(125 211 252 / 0.45);
  border-radius: 999px;
  background: rgb(125 211 252 / 0.08);
}

.contact-icon svg {
  width: 2rem;
  height: 2rem;
  display: block;
  color: var(--accent);
}

.contact-info h3 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.contact-value {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  color: var(--accent);
  font-family: var(--font-mono);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  backdrop-filter: blur(5px);
}

.lightbox.active {
  display: flex;
  animation: fadeIn 200ms ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background var(--speed);
  z-index: 1001;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
}

.lightbox-content img,
.lightbox-content video {
  max-width: 100%;
  max-height: 90vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

#lightbox-image {
  display: none;
}

#lightbox-video {
  display: none;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: rgb(10 10 25 / 0.5);
  padding: 2.5rem 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-family: var(--font-mono);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.roblox-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgb(0 170 255 / 0.15), rgb(0 120 255 / 0.2));
  border: 1px solid rgb(0 170 255 / 0.4);
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.85rem;
  font-family: var(--font-mono);
  transition: all var(--speed) var(--easing);
  box-shadow: var(--shadow-sm);
}

.roblox-badge:hover {
  background: linear-gradient(135deg, rgb(0 170 255 / 0.25), rgb(0 120 255 / 0.3));
  border-color: rgb(0 170 255 / 0.6);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.roblox-badge-text {
  color: var(--text-secondary);
}

.roblox-badge-text strong {
  color: var(--accent);
  font-weight: 700;
}

.roblox-logo {
  flex-shrink: 0;
  border-radius: 4px;
  display: block;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: var(--radius);
  transition: top 200ms;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms var(--easing), transform 600ms var(--easing);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal.reveal--left {
  transform: translateX(-40px) translateY(0);
}

.reveal.reveal--left.in {
  transform: translateX(0) translateY(0);
}

.reveal.reveal--right {
  transform: translateX(40px) translateY(0);
}

.reveal.reveal--right.in {
  transform: translateX(0) translateY(0);
}

.reveal.reveal--scale {
  transform: scale(0.95);
}

.reveal.reveal--scale.in {
  transform: scale(1);
}

.parallax-section {
  will-change: transform;
}

.delay-1 {
  transition-delay: 100ms;
}

.delay-2 {
  transition-delay: 200ms;
}

.delay-3 {
  transition-delay: 300ms;
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    height: auto;
    padding: 1rem 0;
    gap: 1rem;
  }

  .site-nav {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stats-card--double,
  .stats-card--triple {
    flex-direction: column;
    padding: 2rem 1.5rem;
  }

  .stat-divider {
    width: 80%;
    height: 1px;
  }

  .stat-item {
    padding: 1rem 0;
  }
}

/* Video Background */
.video-bg-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
  background: linear-gradient(180deg, #0a0a18 0%, #0f0f25 30%, #151530 70%, #0a0a18 100%);
}

#bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
}

.video-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 50% at 20% 20%, rgb(88 28 135 / 0.4), transparent 50%),
    radial-gradient(ellipse 60% 80% at 80% 80%, rgb(30 58 138 / 0.35), transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgb(67 56 202 / 0.2), transparent 60%),
    linear-gradient(to bottom,
      rgb(10 10 20 / 0.75) 0%,
      rgb(15 15 35 / 0.55) 30%,
      rgb(20 25 50 / 0.5) 50%,
      rgb(15 15 35 / 0.6) 70%,
      rgb(10 10 20 / 0.78) 100%);
  backdrop-filter: blur(2px);
}

/* Audio Control */
.audio-control {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
  background: rgb(15 20 45 / 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  color: var(--accent);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--speed) var(--easing);
  box-shadow: var(--shadow-lg);
}

.audio-control:hover {
  background: rgb(125 211 252 / 0.15);
  transform: scale(1.08);
  border-color: rgb(125 211 252 / 0.5);
}

.audio-control .icon {
  width: 1.35rem;
  height: 1.35rem;
  display: grid;
  place-items: center;
  line-height: 1;
}

.audio-control .icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Transparent Layout Surfaces */
.hero,
.section,
.site-header {
  background-color: transparent !important;
}

.section.alt {
  background-color: rgb(15 20 45 / 0.4) !important;
  backdrop-filter: blur(8px);
}

.site-header {
  background: rgb(10 10 25 / 0.65) !important;
  backdrop-filter: blur(14px);
}
