/* CSS Box Model Reset */
*,
::after,
::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* HTML base styles */
html {
  min-height: 100%;
  font-size: 1rem;
}

/* Body base styles with performance optimizations */
body {
  	-moz-osx-font-smoothing: grayscale;
  	font-smoothing: antialiased;
  	text-rendering: optimizeLegibility;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: subpixel-antialiased;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-scroll-chaining: none;
    overscroll-behavior: none;
  	box-sizing: border-box;
  	height: 100%;
  	overflow: hidden;
}

/* Remove system styling from select elements */
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Box shadow utility class */
.box-shadow{
  -webkit-box-shadow: 0px 0px 11px 4px rgba(255,255,255,0.3);
  -moz-box-shadow: 0px 0px 11px 4px rgba(255,255,255,0.3);
   box-shadow: 0px 0px 11px 4px rgba(255,255,255,0.3);
}

/* Scroll-snap utility classes */
.x-mandatory-scroll-snapping {
  scroll-snap-type: x mandatory;
}
.x-proximity-scroll-snapping {
  scroll-snap-type: x proximity;
}
.y-mandatory-scroll-snapping {
  scroll-snap-type: y mandatory;
}
.y-proximity-scroll-snapping {
  scroll-snap-type: y proximity;
}

/* Disable text selection on desktop */
@media (min-width: 991px) {
    * {
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
}

/* Allow text selection on input elements */
input,
textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Hide scrollbars */
::-webkit-scrollbar {
    -ms-overflow-style: none;
    display: none;
    overflow: -moz-scrollbars-none;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

/* Hide grid wrapper */
.grid_wrap {
    display: none;
}

/* Lenis smooth scrolling styles */
html.lenis {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}

/* Text styling with stroke effect */
.text {
    position: absolute;
    pointer-events: none;
    -webkit-text-stroke: 1.6px #fff;
    font-weight: 500;
    text-transform: uppercase;
    color: #16161600;
}
.text span {
    color: #fff;
}

/* Noise texture overlay */
.noise {
  height: 100vh;
  pointer-events: none;
  mix-blend-mode: hard-light;
  opacity: 40%;
}
.noise::before {
  content: "";
  z-index: 999;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height:100vh;
  background: url(https://cdn.prod.website-files.com/669799f4afcf09e77ccd79c9/677c0a4e607d776a00b5833e_tex__free_noise_glitter_texture_by_cocobunnie-d7tzw2j-1.webp);
  -webkit-animation: 90ms infinite noise;
  animation: 90ms infinite noise;
}

/* Noise animation keyframes */
@-webkit-keyframes noise {
  0%, 100% { background-position: 0 0; }
  10% { background-position: -5% -10%; }
  20% { background-position: -15% 5%; }
  30% { background-position: 7% -25%; }
  40% { background-position: 20% 25%; }
  50% { background-position: -25% 10%; }
  60% { background-position: 15% 5%; }
  70% { background-position: 0 15%; }
  80% { background-position: 25% 35%; }
  90% { background-position: -10% 10%; }
}
@keyframes noise {
  0%, 100% { background-position: 0 0; }
  10% { background-position: -5% -10%; }
  20% { background-position: -15% 5%; }
  30% { background-position: 7% -25%; }
  40% { background-position: 20% 25%; }
  50% { background-position: -25% 10%; }
  60% { background-position: 15% 5%; }
  70% { background-position: 0 15%; }
  80% { background-position: 25% 35%; }
  90% { background-position: -10% 10%; }
}

/* Cyberpunk button styles */
.button-container {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    .cyber-button {
      --button-color: var(--swatch--brand);
      --button-glow: rgba(255, 98, 0, 0.3);
      --hover-color: var(--swatch--berlin);
      background: var(--button-color);
      color: #000;
      font-family: 'Tx 02', monospace;
      font-size: 16px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 2px;
      padding: 12px 30px;
      border: none;
      border-radius: 50px;
      position: relative;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 0 10px var(--button-glow);
    }
    .cyber-button:hover {
      background: var(--hover-color);
      box-shadow: 0 0 20px var(--hover-color);
    }
		.cyber-button-secondary {
      --button-color: var(--swatch--deep-night);
      --button-glow: rgba(255, 98, 0, 0.3);
      --hover-color: var(--swatch--berlin);
      background: var(--button-color);
      color: var(--swatch--light);
 			font-family: 'Tx 02', monospace;
      font-size: 16px;
      font-weight: medium;
      text-transform: uppercase;
      letter-spacing: 2px;
      padding: 12px 30px;
      border: none;
      border-radius: 50px;
      position: relative;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 0 10px var(--button-glow);
    }
    .cyber-button-secondary:hover {
      background: var(--hover-color);
      box-shadow: 0 0 20px var(--hover-color);
      color: #000;
    }
    .button-svg {
      transition: all 0.3s ease;
    }
    .button-svg.left {
      margin-right: -53px;
    }
    .button-svg.right {
      margin-left: -53px;
    }
    .button-container:hover .button-svg.left {
      margin-right: -45px;
    }
    .button-container:hover .button-svg.right {
      margin-left: -45px;
    }
    .button-container:hover .button-svg path {
      stroke-width: 2;
      filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
    }
    .button-container:hover .button-svg circle {
      filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
    }

/* Appear animation for blocks */
@keyframes appear {
        from {
          opacity: 0;
          clip-path: inset(100% 100% 0 0);
        }
        to {
          opacity: 1;
          clip-path: inset(0 0 0 0);
        }
      }
.block {
        animation: appear linear;
        animation-timeline: view();
        animation-range: entry 0% cover 40%;
      }

/* CSS animations for elements that don't need JavaScript */
.slide-in-top {
	-webkit-animation: slide-in-top 0.7s cubic-bezier(0.175, 0.885, 0.320, 1.275) 1.5s both;
	        animation: slide-in-top 0.7s cubic-bezier(0.175, 0.885, 0.320, 1.275) 1.5s both;
}

/* Slide-in-top animation */
@-webkit-keyframes slide-in-top {
  0% {
    -webkit-transform: translateY(-150px);
            transform: translateY(-150px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-top {
  0% {
    -webkit-transform: translateY(-150px);
            transform: translateY(-150px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

/* Text flicker-in-glow animation */
.text-flicker-in-glow {
	-webkit-animation: text-flicker-in-glow 4s cubic-bezier(1.000, 0.000, 0.000, 1.000) 3s both;
	        animation: text-flicker-in-glow 4s cubic-bezier(1.000, 0.000, 0.000, 1.000) 2.2s both;
}
@-webkit-keyframes text-flicker-in-glow {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
    text-shadow: none;
  }
  15% {
    opacity: 1;
    text-shadow: none;
  }
  20% {
    opacity: 0;
    text-shadow: none;
  }
  30% {
    opacity: 1;
    text-shadow: 0 0 15px rgba(255, 102, 0, 0.3);
  }
  40% {
    opacity: 0;
    text-shadow: none;
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 15px rgba(255, 102, 0, 0.3), 0 0 30px rgba(255, 102, 0, 0.2);
  }
  60% {
    opacity: 0;
    text-shadow: none;
  }
  70% {
    opacity: 1;
    text-shadow: 0 0 15px rgba(255, 102, 0, 0.4), 0 0 30px rgba(255, 102, 0, 0.2), 0 0 50px rgba(255, 102, 0, 0.1);
  }
  80% {
    opacity: 0;
    text-shadow: none;
  }
  100% {
    opacity: 1;
    text-shadow: 0 0 15px rgba(255, 102, 0, 0.5), 0 0 30px rgba(255, 102, 0, 0.3);
  }
}
@keyframes text-flicker-in-glow {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
    text-shadow: none;
  }
  15% {
    opacity: 1;
    text-shadow: none;
  }
  20% {
    opacity: 0;
    text-shadow: none;
  }
  30% {
    opacity: 1;
    text-shadow: 0 0 15px rgba(255, 102, 0, 0.3);
  }
  40% {
    opacity: 0;
    text-shadow: none;
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 15px rgba(255, 102, 0, 0.3), 0 0 30px rgba(255, 102, 0, 0.2);
  }
  60% {
    opacity: 0;
    text-shadow: none;
  }
  70% {
    opacity: 1;
    text-shadow: 0 0 15px rgba(255, 102, 0, 0.4), 0 0 30px rgba(255, 102, 0, 0.2), 0 0 50px rgba(255, 102, 0, 0.1);
  }
  80% {
    opacity: 0;
    text-shadow: none;
  }
  100% {
    opacity: 1;
    text-shadow: 0 0 15px rgba(255, 102, 0, 0.5), 0 0 30px rgba(255, 102, 0, 0.3);
  }
}

/* Slide-in-left animation */
.slide-in-left {
	-webkit-animation: slide-in-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 67s both;
	        animation: slide-in-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 6s both;
}
@-webkit-keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-1000px);
            transform: translateX(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-1000px);
            transform: translateX(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

/* Slide-in-right animation */
.slide-in-right {
	-webkit-animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 2s both;
	        animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 2s both;
}
@-webkit-keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(1000px);
            transform: translateX(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(1000px);
            transform: translateX(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

/* Music Player Styles */
:root {
  /* Responsive sizing variables */
  --space-xs: clamp(0.25rem, 0.5vw, 0.5rem);
  --space-sm: clamp(0.5rem, 1vw, 0.75rem);
  --space-md: clamp(1rem, 2vw, 1.5rem);
  --space-lg: clamp(1.5rem, 3vw, 2.5rem);
  --space-xl: clamp(2rem, 4vw, 3rem);
  /* Player dimensions */
  --player-height: clamp(6.5rem, 10vh, 6.5rem);
  --player-padding: var(--space-md);
  --player-controls-size: clamp(2.5rem, 5vh, 3rem);
  --player-play-size: clamp(3rem, 6vh, 3.5rem);
  --player-thumbnail-size: clamp(2.5rem, 5vh, 3rem);
  /* Card dimensions - updated to 70vh */
  --card-height: 65vh;
  --card-width: clamp(300px, 90%, 1000px);
  /* Typography */
  --font-size-xs: clamp(0.6rem, 1.2vw, 0.7rem);
  --font-size-sm: clamp(0.7rem, 1.5vw, 0.85rem);
  --font-size-md: clamp(0.85rem, 1.7vw, 1rem);
  --font-size-lg: clamp(1rem, 2vw, 1.25rem);
  --font-size-xl: clamp(1.2rem, 2.5vw, 1.6rem);
  /* Colors */
  --color-primary: rgba(255, 255, 0, 0.9);
  --color-primary-muted: rgba(255, 255, 0, 0.7);
  --color-primary-glow: rgba(255, 255, 0, 0.3);
  --color-text: rgba(255, 255, 255, 0.9);
  --color-text-muted: rgba(255, 255, 255, 0.7);
  --color-bg-card: rgba(17, 17, 17, 0.7);
  --color-bg-dark: rgba(0, 0, 0, 0.8);
  --color-border: rgba(255, 255, 255, 0.2);
  --color-border-active: rgba(255, 255, 255, 0.6);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  color: var(--color-text);
  font-family: monospace;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
}

/* Fix for mobile visibility */
.section.player {
  opacity: 1;
  height: 100vh;
  width: 100vw;
  position: relative;
}

.container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  perspective: 1500px;
}

/* Grid lines */
.grid {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.horizontal-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transform: rotateX(60deg) translateZ(-100px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Holographic elements container */
.holographic-container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}

/* Cards container */
.cards-container {
  position: absolute;
  top: 3vh;
  left: 0;
  right: 0;
  bottom: var(--player-height);
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 10%;
  transform-style: preserve-3d;
}

/* Card */
.card {
  position: absolute;
  width: var(--card-width);
  height: var(--card-height);
  border-radius: 2px;
  overflow: hidden;
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform-origin: center center;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  background-color: transparent;
  border: 1px solid var(--color-border);
  backdrop-filter: none;
  transform-style: preserve-3d;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
  z-index: 1;
}

.card.active {
  border: 1px solid var(--color-border-active);
  box-shadow: 0 0 30px var(--color-primary-glow);
}

.card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  z-index: 0;
}

.active .card-bg {
  opacity: 1;
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md);
  z-index: 2;
  display: flex;
  align-items: center;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 100%);
}

.card-number {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  font-size: var(--font-size-sm);
  font-weight: bold;
  color: var(--color-text-muted);
  z-index: 2;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.active .card-number {
  color: var(--color-primary);
  text-shadow: 0 0 10px var(--color-primary-glow);
}

.card-time {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  font-size: var(--font-size-sm);
  font-weight: bold;
  color: var(--color-text-muted);
  z-index: 2;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.active .card-time {
  color: var(--color-primary);
  text-shadow: 0 0 10px var(--color-primary-glow);
}

.card-thumbnail {
  width: clamp(60px, 8vw, 100px);
  height: clamp(60px, 8vw, 100px);
  border-radius: 4px;
  overflow: hidden;
  margin-right: var(--space-md);
  border: 1px solid var(--color-border);
  background-color: #000;
  z-index: 2;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.active .card-thumbnail {
  border: 1px solid var(--color-border-active);
  box-shadow: 0 0 15px var(--color-primary-glow);
}

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

.card-text {
  flex: 1;
  z-index: 2;
  font-size: var(--font-size-md);
}

.card-artist {
  font-size: var(--font-size-xl);
  font-weight: bold;
  color: var(--color-text);
  margin-bottom: 4px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.active .card-artist {
  color: var(--color-primary);
  text-shadow: 0 0 10px var(--color-primary-glow);
}

.card-genre {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

.active .card-genre {
  color: var(--color-primary-muted);
}

/* Sample label */
.sample-label {
  position: absolute;
  bottom: 20%;
  right: 10%;
  color: var(--color-text-muted);
  font-size: var(--font-size-xs);
  padding: 4px 12px;
  border: 1px solid var(--color-border);
  background-color: rgba(0, 0, 0, 0.5);
  transform: rotateX(60deg) translateZ(20px);
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
  z-index: 10;
}

/* Media Player */
.media-player {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--player-height);
  background-color: var(--color-bg-dark);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  padding: 0 var(--player-padding);
  border-top: 1px solid var(--color-border);
  z-index: 100;
  margin: 20px;
}

.player-info {
  display: flex;
  align-items: center;
  width: 20%;
  min-width: 150px;
}

.player-thumbnail {
  width: var(--player-thumbnail-size);
  height: var(--player-thumbnail-size);
  border-radius: 4px;
  overflow: hidden;
  margin-right: var(--space-sm);
  border: 1px solid var(--color-border-active);
  background-color: #000;
  box-shadow: 0 0 10px var(--color-primary-glow);
  flex-shrink: 0;
}

.player-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player-text {
  flex: 1;
  min-width: 0;
}

.player-artist {
  font-size: var(--font-size-sm);
  font-weight: bold;
  color: var(--color-text);
  margin-bottom: 4px;
  text-shadow: 0 0 5px var(--color-primary-glow);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-genre {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.player-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-md);
}

.control-button {
  background: none;
  border: none;
  color: var(--color-text);
  cursor: pointer;
  font-size: var(--font-size-md);
  width: var(--player-controls-size);
  height: var(--player-controls-size);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.control-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.play-button {
  background-color: rgba(255, 255, 255, 0.9);
  color: #000;
  width: var(--player-play-size);
  height: var(--player-play-size);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.play-button:hover {
  background-color: var(--color-primary);
  box-shadow: 0 0 15px var(--color-primary-glow);
}

.player-timeline-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.player-time {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  min-width: 2.5rem;
  text-align: center;
}

.player-timeline {
  flex: 1;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  position: relative;
  border-radius: 2px;
}

.timeline-progress {
  height: 100%;
  background-color: var(--color-primary-muted);
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px var(--color-primary-glow);
  border-radius: 2px;
}

.timeline-handle {
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: var(--color-text);
  border-radius: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 0%;
  box-shadow: 0 0 10px var(--color-primary-glow);
  cursor: pointer;
  z-index: 2;
}

.player-right {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  width: 20%;
  min-width: 150px;
  justify-content: flex-end;
}

.volume-control {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.volume-slider {
  width: clamp(50px, 8vw, 100px);
  height: 3px;
  -webkit-appearance: none;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  outline: none;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-text);
  cursor: pointer;
  box-shadow: 0 0 5px var(--color-primary-glow);
}

.close-button {
  color: var(--color-text-muted);
  cursor: pointer;
  font-size: var(--font-size-lg);
  margin-left: var(--space-sm);
}

/* Ambient glow effects */
.ambient-glow {
  position: absolute;
  top: 33%;
  left: 50%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: none;
  pointer-events: none;
  z-index: 0;
}

/* Scan lines effect */
.scan-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image: linear-gradient(transparent 50%, rgba(255, 255, 255, 0.05) 50%);
  background-size: 100% 4px;
  z-index: 999;
}

/* Holographic flare */
.holographic-flare {
  position: absolute;
  width: 100%;
  height: 100%;
  background: none;
  background-size: 200% 200%;
  animation: none;
  pointer-events: none;
  z-index: 1;
}

@keyframes flareAnimation {
  0% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
    overflow-y: auto;
  }
  
  .section.player {
    min-height: 100vh;
    height: auto;
  }
  
  .container {
    min-height: 100vh;
    height: auto;
  }
  
  .cards-container {
    bottom: 120px;
  }
  
  .player-info, .player-right {
    min-width: 100px;
  }
  .player-controls {
    gap: var(--space-sm);
  }
}

@media (max-width: 480px) {
  body {
    overflow-x: hidden;
    overflow-y: auto;
  }
  
  .section.player {
    min-height: 100vh;
    height: auto;
  }
  
  .container {
    min-height: 100vh;
    height: auto;
  }
  
  .cards-container {
    bottom: 100px;
  }
  
  .card {
    width: 90vw;
    max-width: 400px;
  }
  
  .player-info {
    width: 60px;
    min-width: 60px;
  }
  .player-text {
    display: none;
  }
  .player-right {
    width: 60px;
    min-width: 60px;
  }
  .volume-control {
    display: none;
  }
} 