/* ==========================================================================
   SKYBALL STUDIO - ARCHITECTURAL AWWWARDS-STYLE PORTFOLIO CSS
   Typography: Bebas Neue (Headings), Montserrat (UI & Body), Space Mono (Meta)
   Colors: Obsidian matte black, metallic lines, single-pixel glowing accents
   ========================================================================== */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@200;300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Space+Mono:wght@400;700&display=swap');

/* CSS Variables */
:root {
  /* Colors */
  --bg-obsidian: #050508;
  --bg-darker: #020203;
  --color-border: rgba(255, 255, 255, 0.06);
  --color-border-active: rgba(255, 255, 255, 0.15);

  /* Accent Colors */
  --neon-purple: #d323f5;
  --neon-purple-rgb: 211, 35, 245;
  --neon-teal: #4db1bf;
  --neon-teal-rgb: 77, 177, 191;
  --neon-blue: #425edd;
  --neon-blue-rgb: 66, 94, 221;
  --accent-pink: #7b4748;

  /* Text Colors */
  --text-white: #ffffff;
  --text-silver: #e2e8f0;
  --text-muted: #8e9bb5;
  --text-dark: #475569;

  /* Typography */
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --font-mono: 'Space Mono', monospace;

  /* Transitions */
  --ease-in-out-cubic: cubic-bezier(0.77, 0, 0.175, 1);
  --transition-premium: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;

  /* Active Theme */
  --theme-glow: var(--neon-purple);
  --theme-glow-rgb: var(--neon-purple-rgb);
}

[data-theme="creativa"] {
  --theme-glow: var(--neon-purple);
  --theme-glow-rgb: var(--neon-purple-rgb);
}

[data-theme="celeste"] {
  --theme-glow: var(--neon-teal);
  --theme-glow-rgb: var(--neon-teal-rgb);
}

/* Reset Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-obsidian);
  color: var(--text-white);
  overflow-x: hidden;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  background-color: var(--bg-obsidian);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--theme-glow);
}

/* ==========================================================================
   BACKDROP & AMBIENT INTERACTIVE SYSTEM
   ========================================================================== */
.grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 100px 100px;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  z-index: -1;
  pointer-events: none;
}

/* Floating Ambient Aura Blobs */
.aura-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
}

.aura-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(160px);
  opacity: 0.15;
  transition: var(--transition-premium);
}

.aura-1 {
  width: 600px;
  height: 600px;
  background: var(--neon-purple);
  top: -10%;
  right: -10%;
  animation: float-blob-1 25s infinite alternate ease-in-out;
}

.aura-2 {
  width: 700px;
  height: 700px;
  background: var(--neon-blue);
  bottom: -15%;
  left: -15%;
  animation: float-blob-2 30s infinite alternate ease-in-out;
}

@keyframes float-blob-1 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-100px, 80px) scale(1.1);
  }

  100% {
    transform: translate(50px, -50px) scale(0.9);
  }
}

@keyframes float-blob-2 {
  0% {
    transform: translate(0, 0) scale(1.1);
  }

  50% {
    transform: translate(80px, -100px) scale(0.95);
  }

  100% {
    transform: translate(-40px, 60px) scale(1.05);
  }
}

/* Structural Grid Line Borders */
.structural-border-top {
  border-top: 1px solid var(--color-border);
}

.structural-border-bottom {
  border-bottom: 1px solid var(--color-border);
}

.structural-border-left {
  border-left: 1px solid var(--color-border);
}

.structural-border-right {
  border-right: 1px solid var(--color-border);
}

/* ==========================================================================
   TYPOGRAPHY & METADATA SYSTEM
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 400;
  color: var(--text-white);
  line-height: 1.1;
}

.monospaced-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--theme-glow);
  text-transform: uppercase;
  transition: var(--transition-premium);
}

p {
  color: var(--text-silver);
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* Structural Components */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 3rem;
}

.section {
  padding: 10rem 0;
  position: relative;
  border-bottom: 1px solid var(--color-border);
}

/* Section Header (Minimal & Spacious) */
.section-header {
  max-width: 800px;
  margin-bottom: 7rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.section-title {
  font-size: 5rem;
  line-height: 1;
}

.section-desc {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
  font-weight: 300;
  margin: 0;
}

/* Premium Buttons */
.premium-btn {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.1rem 2.8rem;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-premium);
  border: 1px solid var(--color-border-active);
  background: transparent;
  color: #fff;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.premium-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.04);
  transition: var(--transition-premium);
  z-index: -1;
}

.premium-btn:hover::before {
  left: 0;
}

.premium-btn:hover {
  border-color: var(--theme-glow);
  box-shadow: 0 0 20px rgba(var(--theme-glow-rgb), 0.15);
  transform: translateY(-2px);
}

.premium-btn-primary {
  background: #fff;
  color: #000;
  border-color: #fff;
  font-weight: 500;
}

.premium-btn-primary:hover {
  background: transparent;
  color: #fff;
  border-color: var(--theme-glow);
}

/* ==========================================================================
   HEADER / NAVIGATION REDESIGN
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  display: flex;
  align-items: center;
  z-index: 100;
  background: rgba(5, 5, 8, 0.6);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition-premium);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 3rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.logo-img {
  height: 34px;
  width: auto;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.1));
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: var(--text-white);
  font-weight: 400;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
  padding: 0.5rem 0;
  transition: var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--theme-glow);
  transition: var(--transition-premium);
  transform: translateX(-50%);
}

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

.nav-link:hover::after {
  width: 100%;
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  border: 1px solid var(--color-border);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-muted);
  transition: var(--transition-premium);
}

.social-icon:hover {
  color: #fff;
  border-color: var(--theme-glow);
  box-shadow: 0 0 15px rgba(var(--theme-glow-rgb), 0.2);
  transform: translateY(-2px);
}

.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
}

.mobile-nav-toggle span {
  width: 28px;
  height: 1px;
  background-color: #fff;
  transition: var(--transition-fast);
}

/* ==========================================================================
   HERO BANNER REDESIGN
   ========================================================================== */
.hero {
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
}

.hero-content {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.2rem;
  z-index: 5;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 1.6rem;
  border: 1px solid var(--color-border-active);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 4px;
  backdrop-filter: blur(10px);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #39FF14;
  border-radius: 50%;
  box-shadow: 0 0 8px #39FF14, 0 0 16px #39FF14;
  animation: pulse-green 2s infinite;
}

.status-text {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text-white);
}

.hero-title {
  font-size: 9rem;
  line-height: 0.95;
  letter-spacing: 0.02em;
  font-weight: 400;
}

.hero-desc {
  font-size: 1.35rem;
  color: var(--text-muted);
  max-width: 680px;
  font-weight: 300;
  line-height: 1.6;
  margin: 0 0 1rem 0;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 4rem;
  left: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-premium);
}

.scroll-indicator:hover {
  color: #fff;
}

.scroll-line {
  width: 50px;
  height: 1px;
  background-color: currentColor;
  position: relative;
  overflow: hidden;
}

.scroll-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #fff;
  animation: scroll-line-anim 2s infinite ease-in-out;
}

@keyframes scroll-line-anim {
  0% {
    left: -100%;
  }

  50% {
    left: 100%;
  }

  100% {
    left: 100%;
  }
}

/* ==========================================================================
   PHILOSOPHY REDESIGN (CREATIVA VS CELESTE Split Layout)
   ========================================================================== */
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.01);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  z-index: 5;
}

.phil-card {
  padding: 6rem 5rem;
  position: relative;
  transition: var(--transition-premium);
  cursor: pointer;
}

.phil-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: -1;
  transition: var(--transition-premium);
}

.phil-card.creativa {
  border-right: 1px solid var(--color-border);
}

/* Dynamic Hover Active highlights */
.phil-card.creativa.active,
.phil-card.creativa:hover {
  background: radial-gradient(circle at center, rgba(var(--neon-purple-rgb), 0.04) 0%, transparent 75%);
}

.phil-card.celeste.active,
.phil-card.celeste:hover {
  background: radial-gradient(circle at center, rgba(var(--neon-teal-rgb), 0.04) 0%, transparent 75%);
}

.phil-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.phil-badge {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.phil-card.creativa .phil-badge {
  color: var(--neon-purple);
}

.phil-card.celeste .phil-badge {
  color: var(--neon-teal);
}

.phil-card .phil-icon {
  font-size: 1.3rem;
  color: var(--text-muted);
}

.phil-title {
  font-size: 4rem;
  font-weight: 400;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

.phil-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 4rem;
  line-height: 1.7;
}

.phil-features {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.phil-feature-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
}

.phil-feature-item .phil-icon {
  font-size: 1.1rem;
  margin-top: 0.3rem;
}

.phil-card.creativa .phil-feature-item .phil-icon {
  color: var(--neon-purple);
}

.phil-card.celeste .phil-feature-item .phil-icon {
  color: var(--neon-teal);
}

.phil-feature-item strong {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: #fff;
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 400;
}

.phil-feature-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* ==========================================================================
   PROJECTS SECTION (WIDESCREEN CINEMATIC)
   ========================================================================== */
.projects-container {
  display: flex;
  flex-direction: column;
  gap: 12rem;
  position: relative;
  z-index: 5;
}

.project-item {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 6rem;
  align-items: center;
}

.project-item.reverse {
  grid-template-columns: 1fr 1.3fr;
}

/* Metallic Cinema Box Player */
.video-player-wrapper {
  position: relative;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  background: #020204;
  border: 1px solid var(--color-border);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
  transition: var(--transition-premium);
  aspect-ratio: 16 / 9;
}

.video-player-wrapper:hover {
  border-color: rgba(var(--theme-glow-rgb), 0.25);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.9), 0 0 30px rgba(var(--theme-glow-rgb), 0.05);
}

.custom-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Clean Custom Media Overlay Controls */
.video-overlay-play {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 8, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-premium);
}

.video-overlay-play.playing {
  opacity: 0;
  pointer-events: none;
}

.play-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  transition: var(--transition-premium);
}

.video-overlay-play:hover .play-circle {
  transform: scale(1.1);
  background: #fff;
  color: #000;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
}

.project-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.project-name {
  font-size: 5rem;
  letter-spacing: 0.03em;
  line-height: 0.95;
  font-weight: 400;
}

.project-description {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
}

.project-metadata {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  border-top: 1px solid var(--color-border);
  padding-top: 2rem;
  margin-top: 1rem;
}

.meta-col {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.meta-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.meta-value {
  font-weight: 400;
  font-size: 1rem;
  color: var(--text-white);
}

/* 3D Asymmetrical Character Card for School Buddies */
.sb-character-container {
  perspective: 1500px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 5;
}

.sb-character-card {
  width: 100%;
  max-width: 420px;
  height: 500px;
  background: #08080c;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform-style: preserve-3d;
  transition: var(--transition-premium);
  position: relative;
}

.sb-character-card:hover {
  border-color: rgba(var(--neon-teal-rgb), 0.25);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), 0 0 30px rgba(var(--neon-teal-rgb), 0.05);
}

.character-card-glow {
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(var(--neon-teal-rgb), 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.sb-img-wrapper {
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateZ(60px);
}

.sb-character-img {
  height: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.7));
  transition: transform 0.5s ease;
}

.sb-card-details {
  transform: translateZ(40px);
  text-align: center;
}

.sb-char-name {
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #fff;
  margin: 0;
}

.sb-char-role {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--neon-teal);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ==========================================================================
   DEPARTMENTS REDESIGN (Fine Grid Panels)
   ========================================================================== */
.departments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-left: 1px solid var(--color-border);
  border-top: 1px solid var(--color-border);
  position: relative;
  z-index: 5;
}

.dept-card {
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 5rem 4rem;
  transition: var(--transition-premium);
  background: transparent;
}

.dept-card:hover {
  background: rgba(255, 255, 255, 0.01);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02);
}

.dept-icon {
  font-size: 1.5rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  transition: var(--transition-premium);
}

.dept-card:hover .dept-icon {
  color: var(--theme-glow);
  transform: scale(1.05);
}

.dept-title {
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}

.dept-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   PORTFOLIO SHOWCASE REDESIGN (Contemporary Gallery)
   ========================================================================== */
.gallery-filters {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 5rem;
  position: relative;
  z-index: 10;
}

.filter-btn {
  background: transparent;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition-fast);
  padding: 0.3rem 0;
  position: relative;
}

.filter-btn:hover {
  color: var(--text-white);
}

.filter-btn.active {
  color: var(--text-white);
}

.filter-btn.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--theme-glow);
  transition: var(--transition-premium);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  /* Super fine elegant gap */
  background: var(--color-border);
  /* Elegant border color showing through */
  position: relative;
  z-index: 5;
}

.gallery-item {
  overflow: hidden;
  background: var(--bg-darker);
  cursor: pointer;
  transition: var(--transition-premium);
  position: relative;
  aspect-ratio: 1 / 1;
}

.gallery-item.hide {
  display: none;
}

.gallery-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 8, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  opacity: 0;
  transition: var(--transition-premium);
  z-index: 5;
}

.gallery-item:hover .gallery-item-img {
  transform: scale(1.06);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-cat {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--theme-glow);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.gallery-item-title {
  font-size: 2rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.2rem;
}

.gallery-item-author {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Premium Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(2, 2, 3, 0.98);
  backdrop-filter: blur(25px);
  z-index: 200;
  display: none;
  opacity: 0;
  align-items: center;
  justify-content: center;
  transition: var(--transition-premium);
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  top: 3rem;
  right: 3rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-premium);
}

.lightbox-close:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
  transform: rotate(90deg);
}

.lightbox-content-wrapper {
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  transform: scale(0.95);
  transition: var(--transition-premium);
}

.lightbox-modal.active .lightbox-content-wrapper {
  transform: scale(1);
}

.lightbox-img {
  max-width: 100%;
  max-height: 65vh;
  object-fit: contain;
  border: 1px solid var(--color-border);
  box-shadow: 0 40px 85px rgba(0, 0, 0, 0.9);
}

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

.lightbox-title {
  font-size: 2.8rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.3rem;
}

.lightbox-author {
  font-size: 1rem;
  color: var(--text-muted);
}

/* ==========================================================================
   CONTACT SECTION & INTERACTIVE 3D BUSINESS CARD
   ========================================================================== */
.contact-section-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 8rem;
  align-items: center;
  position: relative;
  z-index: 5;
}

/* 3D Card Setup */
.card-3d-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1500px;
}

.business-card-container {
  width: 440px;
  height: 250px;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  position: relative;
}

.business-card-container.flipped {
  transform: rotateY(180deg);
}

.card-face {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-face.front {
  background: var(--bg-darker);
}

.card-face.back {
  background: var(--bg-darker);
  transform: rotateY(180deg);
}

.card-vector-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Clean Underlined Forms (High-End architectural look) */
.contact-form-panel {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.form-header {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.form-title {
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1;
}

.form-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
}

.contact-details-box {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 2.2rem 0;
  margin-bottom: 1rem;
}

.detail-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 1rem;
  color: var(--text-silver);
}

.detail-row i {
  color: var(--theme-glow);
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.detail-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-dark);
  text-transform: uppercase;
  margin-right: 0.5rem;
}

.form-group {
  position: relative;
  margin-bottom: 3.5rem;
}

.form-input {
  width: 100%;
  padding: 1rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-border-active);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  color: #fff;
  outline: none;
  transition: var(--transition-fast);
  border-radius: 0;
}

.form-input:focus {
  border-bottom: 1px solid var(--theme-glow);
}

.form-label {
  position: absolute;
  left: 0;
  top: 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  pointer-events: none;
  transition: var(--transition-premium);
  text-transform: uppercase;
  font-weight: 400;
  font-family: var(--font-body);
  letter-spacing: 0.05em;
}

.form-input:focus~.form-label,
.form-input:not(:placeholder-shown)~.form-label {
  top: -1.2rem;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--theme-glow);
}

textarea.form-input {
  resize: none;
  min-height: 100px;
}

.form-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.2rem;
  width: 100%;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid #fff;
  background: #fff;
  color: #000;
  cursor: pointer;
  transition: var(--transition-premium);
  border-radius: 4px;
}

.form-submit-btn:hover {
  background: transparent;
  color: #fff;
  border-color: var(--theme-glow);
  box-shadow: 0 0 20px rgba(var(--theme-glow-rgb), 0.2);
  transform: translateY(-2px);
}

.form-status {
  padding: 1.2rem;
  border-radius: 4px;
  display: none;
  font-size: 0.95rem;
  font-weight: 400;
  text-align: center;
  margin-top: 2rem;
  animation: fadeIn 0.4s ease;
}

.form-status.success {
  background: rgba(57, 255, 20, 0.04);
  border: 1px solid rgba(57, 255, 20, 0.2);
  color: #39FF14;
}

.form-status.error {
  background: rgba(255, 50, 50, 0.04);
  border: 1px solid rgba(255, 50, 50, 0.2);
  color: #ff3232;
}

/* ==========================================================================
   FOOTER SECTION REDESIGN
   ========================================================================== */
.footer {
  background: var(--bg-darker);
  padding: 8rem 0 4rem 0;
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 5rem;
  margin-bottom: 6rem;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.footer-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-white);
  letter-spacing: 0.08em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.footer-link {
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--theme-glow);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.footer-contact-icon {
  color: var(--theme-glow);
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.copyright {
  font-size: 0.9rem;
  color: var(--text-dark);
}

.footer-sublinks {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.footer-sublink {
  font-size: 0.9rem;
  color: var(--text-dark);
}

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

/* ==========================================================================
   ANIMATIONS & RESPONSIVE BREAKPOINTS
   ========================================================================== */
@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.5);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(57, 255, 20, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(57, 255, 20, 0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

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

/* Media Queries */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 7rem;
  }

  .section-title {
    font-size: 4rem;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
  }

  .phil-card.creativa {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }

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

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

  .contact-section-inner {
    grid-template-columns: 1fr;
    gap: 6rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 2rem;
  }

  .hero-title {
    font-size: 5rem;
  }

  .section-title {
    font-size: 3rem;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(2, 2, 3, 0.98);
    backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    gap: 3.5rem;
    z-index: 100;
    transition: var(--transition-premium);
    border-left: 1px solid var(--color-border);
  }

  .nav-menu.active {
    right: 0;
  }

  .mobile-nav-toggle {
    display: flex;
  }

  .mobile-nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .header-socials {
    display: none;
  }

  .project-item {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .project-item.reverse {
    grid-template-columns: 1fr;
  }

  .project-info {
    order: 2 !important;
  }

  .video-player-wrapper,
  .sb-character-container {
    order: 1 !important;
  }

  .departments-grid {
    grid-template-columns: 1fr;
  }

  .dept-card {
    padding: 4rem 2rem;
  }

  .gallery-filters {
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
  }

  .business-card-container {
    width: 100%;
    max-width: 360px;
    height: 210px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.5rem;
  }

  .hero-title {
    font-size: 3.8rem;
  }

  .section-title {
    font-size: 2.6rem;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .premium-btn {
    width: 100%;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   LEE RANG PREMIUM SPECIALIZED REPLICATION STYLES
   ========================================================================== */
.serif-title-lux {
  font-family: 'Playfair Display', serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.arched-frame {
  border-radius: 260px 260px 0 0;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--bg-darker);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  transition: var(--transition-premium);
}

.arched-frame:hover {
  border-color: rgba(var(--neon-purple-rgb), 0.2);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 25px rgba(var(--neon-purple-rgb), 0.08);
}

.panel-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  padding: 8rem 0;
  border-bottom: 1px solid var(--color-border);
}

.panel-row.borderless {
  border-bottom: none;
}

.panel-row.asymmetric-left {
  grid-template-columns: 0.8fr 1.2fr;
}

.panel-row.asymmetric-right {
  grid-template-columns: 1.2fr 0.8fr;
}

.quote-typography-block {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
  font-weight: 400;
  color: var(--text-white);
  position: relative;
}

.quote-author {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2rem;
  display: block;
}

.sample-works-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sample-metadata-block {
  border-top: 1px solid var(--color-border);
  padding-top: 1.5rem;
  margin-top: 0.5rem;
}

@media (max-width: 992px) {

  .panel-row,
  .panel-row.asymmetric-left,
  .panel-row.asymmetric-right {
    grid-template-columns: 1fr !important;
    gap: 4rem;
    padding: 6rem 0;
  }

  .quote-typography-block {
    font-size: 2.2rem;
  }
}

/* ==========================================================================
   LEE RANG PREMIUM SPECIALIZED REPLICATION COLOR-BLOCKING & ASYMMETRICAL GRIDS
   ========================================================================== */
.lee-section {
  padding: 8rem 0;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.lee-section.borderless {
  border-bottom: none;
}

/* 9 Section Specific Background Colors - Mapped to match dynamic illustration ambient color palettes */
.lee-bg-hero {
  background: linear-gradient(135deg, #18091a 0%, #0c080d 50%, #07070a 100%);
  color: #ffffff;
}

.lee-bg-canvas {
  background: linear-gradient(135deg, #1b0a17 0%, #0d060c 60%, #080509 100%);
  color: #ffffff;
}

.lee-bg-journey {
  background: linear-gradient(135deg, #0b0717 0%, #050409 60%, #020204 100%);
  color: #ffffff;
}

.lee-bg-samples {
  background: linear-gradient(135deg, #eae8f2 0%, #e2e0eb 100%);
  color: #1a1a24;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.lee-bg-traditional {
  background: linear-gradient(135deg, #1f0b0d 0%, #0e0607 60%, #070304 100%);
  color: #ffffff;
}

.lee-bg-quote {
  background: radial-gradient(circle at 75% 50%, #0e121c 0%, #020203 100%);
  color: #ffffff;
}

.lee-bg-animations {
  background: linear-gradient(135deg, #140d1a 0%, #0d0c12 50%, #16110d 100%);
  color: #ffffff;
}

.lee-bg-sketches {
  background: linear-gradient(135deg, #0e1014 0%, #08090b 100%);
  color: #ffffff;
}

.lee-bg-contact {
  background: linear-gradient(135deg, #1a100a 0%, #0d0805 60%, #050302 100%);
  color: #ffffff;
}

/* Invert colors inside light silver samples section */
.lee-bg-samples .monospaced-tag {
  color: #555566;
}

.lee-bg-samples .serif-title-lux {
  color: #1a1a24;
}

.lee-bg-samples p {
  color: #475569;
}

.lee-bg-samples .gallery-item {
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.lee-bg-samples .sample-metadata-block {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  color: #1a1a24;
}

.lee-bg-samples .sample-metadata-block h4 {
  color: #1a1a24;
}

/* Custom grids and layouts for replication */
.lee-hero-wrapper {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 5rem;
  align-items: center;
}

.lee-hero-right-bg {
  position: relative;
  width: 100%;
  height: 550px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.lee-hero-text-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(14, 14, 17, 0.1) 10%, rgba(14, 14, 17, 0.8) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3.5rem;
  z-index: 2;
}

.lee-title-huge {
  font-family: 'Playfair Display', serif;
  font-size: 7.5rem;
  line-height: 0.85;
  margin-bottom: 1.5rem;
}

.lee-subtitle-serif {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* My Journey Section custom crops */
.lee-journey-wrapper {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 6rem;
  align-items: center;
}

.lee-journey-side-img {
  width: 100%;
  height: 440px;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lee-journey-commission-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
}

/* Traditional Outfits columns */
.lee-traditional-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6rem;
  align-items: center;
}

.lee-traditional-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.lee-traditional-card {
  width: 100%;
  height: 480px;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Animations Wrapper */
.lee-animations-wrapper {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 6rem;
  align-items: center;
}

/* Sketches Section */
.lee-sketches-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6rem;
  align-items: center;
}

/* Contact Section layout */
.lee-contact-wrapper {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 6rem;
  align-items: flex-start;
}

.lee-contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.lee-contact-drawings-block {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: flex-end;
}

.lee-contact-drawings-block .card-face {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

/* Image framing utility helper */
.lee-full-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.lee-full-img:hover {
  transform: scale(1.04);
}

/* Responsive Overrides */
@media (max-width: 1200px) {
  .lee-title-huge {
    font-size: 6rem;
  }

  .lee-subtitle-serif {
    font-size: 1.8rem;
  }
}

@media (max-width: 992px) {
  .lee-section {
    padding: 6rem 0;
  }

  .lee-hero-wrapper,
  .lee-journey-wrapper,
  .lee-traditional-wrapper,
  .lee-animations-wrapper,
  .lee-sketches-wrapper,
  .lee-contact-wrapper {
    grid-template-columns: 1fr !important;
    gap: 4rem;
  }

  .lee-traditional-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lee-hero-right-bg {
    height: 400px;
  }

  .lee-journey-commission-cols {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .lee-contact-drawings-block {
    align-items: center;
  }
}

@media (max-width: 576px) {
  .lee-title-huge {
    font-size: 4rem;
  }

  .lee-subtitle-serif {
    font-size: 1.4rem;
  }

  .lee-traditional-grid {
    grid-template-columns: 1fr;
  }
}

.sidak-body {
  background-color: #07070a !important;
  color: #e2e8f0 !important;
}

.daw-dashboard {
  display: grid;
  grid-template-columns: 290px 1fr;
  min-height: 100vh;
  background-color: #07070a;
  position: relative;
  z-index: 5;
}

.daw-sidebar {
  background-color: #040406;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: sticky;
  top: 0;
  height: 100vh;
  z-index: 10;
}

.daw-main {
  padding: 4rem 4.5rem 12rem 4.5rem;
  overflow-y: auto;
}

/* Glassmorphism panel cards */
.daw-panel {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transition: var(--transition-premium);
  position: relative;
  overflow: hidden;
}

.daw-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, rgba(29, 185, 84, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.daw-panel:hover {
  border-color: rgba(29, 185, 84, 0.2);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(29, 185, 84, 0.03);
}

/* Spotify green glowing elements */
.spotify-glow {
  color: #1db954;
  text-shadow: 0 0 10px rgba(29, 185, 84, 0.4);
}

.spotify-bg-glow {
  background-color: #1db954;
  box-shadow: 0 0 20px rgba(29, 185, 84, 0.4);
}

/* Reactive Soundwave visualizer bars */
.reactive-wave-container {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 60px;
  padding: 0 1rem;
}

.reactive-bar {
  width: 4px;
  height: 5px;
  background-color: #1db954;
  border-radius: 2px;
  transition: height 0.15s ease;
}

/* Pulsing audio visualization keyframes for when audio is active */
.reactive-wave-container.playing .reactive-bar {
  animation: pulse-wave 1.2s ease-in-out infinite alternate;
}

/* Make bars pulse at offset rates */
.reactive-wave-container.playing .reactive-bar:nth-child(1) {
  animation-delay: 0.1s;
}

.reactive-wave-container.playing .reactive-bar:nth-child(2) {
  animation-delay: 0.3s;
}

.reactive-wave-container.playing .reactive-bar:nth-child(3) {
  animation-delay: 0.6s;
}

.reactive-wave-container.playing .reactive-bar:nth-child(4) {
  animation-delay: 0.2s;
}

.reactive-wave-container.playing .reactive-bar:nth-child(5) {
  animation-delay: 0.8s;
}

.reactive-wave-container.playing .reactive-bar:nth-child(6) {
  animation-delay: 0.4s;
}

.reactive-wave-container.playing .reactive-bar:nth-child(7) {
  animation-delay: 0.7s;
}

.reactive-wave-container.playing .reactive-bar:nth-child(8) {
  animation-delay: 0.5s;
}

.reactive-wave-container.playing .reactive-bar:nth-child(9) {
  animation-delay: 0.9s;
}

.reactive-wave-container.playing .reactive-bar:nth-child(10) {
  animation-delay: 0.15s;
}

.reactive-wave-container.playing .reactive-bar:nth-child(11) {
  animation-delay: 0.35s;
}

.reactive-wave-container.playing .reactive-bar:nth-child(12) {
  animation-delay: 0.55s;
}

@keyframes pulse-wave {
  0% {
    height: 5px;
  }

  100% {
    height: 45px;
  }
}

/* Playlist tracks table */
.daw-tracklist-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}

.daw-tracklist-table th,
.daw-tracklist-table td {
  padding: 1.2rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.daw-tracklist-table th {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.daw-tracklist-table tr {
  transition: var(--transition-fast);
  cursor: pointer;
}

.daw-tracklist-table tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.daw-tracklist-table tr.active {
  background: rgba(29, 185, 84, 0.06);
}

.daw-tracklist-table tr.active td {
  color: #1db954;
}

/* Sticky Bottom Player Engine Bar */
.daw-playbar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background-color: rgba(4, 4, 6, 0.9);
  backdrop-filter: blur(25px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  align-items: center;
  z-index: 100;
  box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.8);
}

/* Controls layout */
.player-core-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.player-btn-row {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.player-control-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.player-control-btn:hover {
  color: #fff;
}

.player-control-btn.btn-play-trigger {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.player-control-btn.btn-play-trigger:hover {
  transform: scale(1.05);
  background: #1db954;
  color: #fff;
}

/* Progress Slider timeline */
.player-timeline-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 600px;
}

.player-time-lbl {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dark);
}

.player-slider-input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.player-slider-input::-webkit-slider-runnable-track {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.player-slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  margin-top: -4px;
  transition: var(--transition-fast);
}

.player-slider-input:hover::-webkit-slider-thumb {
  background: #1db954;
  box-shadow: 0 0 10px rgba(29, 185, 84, 0.5);
}

/* Custom premium wrapped Spotify Card container */
.spotify-wrapped-card {
  position: relative;
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  transition: var(--transition-premium);
}

.spotify-wrapped-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(29, 185, 84, 0.06) 0%, transparent 60%);
  pointer-events: none;
  transition: var(--transition-premium);
}

.spotify-wrapped-card:hover {
  border-color: rgba(29, 185, 84, 0.25);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 25px rgba(29, 185, 84, 0.04);
}

/* Responsive configurations for DAW split */
@media (max-width: 1024px) {
  .daw-dashboard {
    grid-template-columns: 1fr;
  }

  .daw-sidebar {
    height: auto;
    position: relative;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem 3rem;
  }

  .daw-main {
    padding: 3rem 3rem 12rem 3rem;
  }

  .daw-playbar {
    padding: 1.5rem 2rem;
  }
}

@media (max-width: 768px) {
  .daw-playbar {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .daw-playbar-left,
  .daw-playbar-right {
    display: none !important;
  }
}