:root {
  --main-text: #ffffff;
  --base-textsize: 14px;
  --blur-bg: rgba(0, 0, 0, 0.2);
  --border-color: #ffffff40;
  --radius: 16px;
  --shadow: rgba(0, 0, 0, 0.17) 0px 54px 55px,
    rgba(0, 0, 0, 0.08) 0px -12px 30px, rgba(0, 0, 0, 0.08) 0px 4px 6px,
    rgba(0, 0, 0, 0.12) 0px 12px 13px, rgba(0, 0, 0, 0.05) 0px -3px 5px,
    0px 0px 1px 1px rgba(255, 255, 255, 0.03) inset;
  --section-margin: 5vw;
  --blur-amount: 75px;
}

html,
body {
  font-family: "JetBrains Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  perspective: 80vw;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

p,
a {
  font-size: var(--base-textsize);
  color: var(--main-text);
  margin: 0;
  text-decoration: none;
}

.section-left {
  position: absolute;
  left: 120px;
  bottom: 100px;
  display: grid;
  grid-template-columns: 460px 260px;
  grid-template-rows: repeat(3, auto);
  gap: 16px;
  transform: rotateX(30deg) rotateY(30deg) rotateZ(-10deg);
  z-index: 1;
}

.section-right {
  position: absolute;
  right: 100px;
  top: 100px;
  transform: rotateX(-30deg) rotateY(-30deg) rotateZ(-10deg);
  z-index: 1;
}

.section-left,
.section-right {
  transition: transform 0.15s ease-out;
  will-change: transform;
}

.blur-box {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(130, 130, 130, 0.1) 1%, var(--blur-bg) 15%, var(--blur-bg) 90%, rgba(0, 0, 0, 0.2) 100%);
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px) url(#fisheye-chroma);
  -webkit-backdrop-filter: blur(10px);
}

.simple-box {
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.3s ease;
}

.simple-box:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: scale(1.02);
}

.simple-box.no-hover:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
  transform: none;
  box-shadow: none;
}

.simple-box.no-padding,
.item.no-padding {
  padding: 0;
  overflow: hidden;
}

.button {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.2s ease;
  cursor: pointer;
  color: var(--main-text);
}

.button:hover {
  transform: scale(1.06);
  background-color: rgba(255, 255, 255, 0.05);
}

.button:active,
.menu-links a:active {
  transform: scale(0.98);
  background-color: rgba(0, 0, 0, 0.2);
  transition: 0.05s ease;
}

.button-shop,
.button-discography {
  overflow: hidden;
  height: auto;
  color: var(--main-text);
}

.button-shop {
  max-width: 200px;
  grid-area: 3 / 2 / 4 / 3;
}

.button-discography {
  max-width: 120px;
  grid-area: 2 / 2 / 3 / 3;
}

.icon-btn {
  height: 30px !important;
  width: 30px !important;
  border-radius: 999px !important;
  position: relative;
  padding: 16px;
}

.icon-btn i {
  font-size: 24px;
  position: absolute;
  top: 32%;
  left: 38%;
}

#loading-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

.bio {
  grid-area: 1 / 1 / 4 / 2;
  display: grid;
  grid-template-columns: 140px 300px;
  grid-template-rows: 1fr;
  gap: 16px;
  height: 150px;
  overflow: hidden;
  width: 400px;
}

.bio-img img {
  width: 50%;
  min-width: 96px;
  object-fit: cover;
  transform: translateY(30%) translateX(20%);
}

.bio-text {
  transform: translateY(15%);
  max-width: 250px;
}

.header-text {
  color: var(--main-text);
}

.footer-links {
  position: absolute;
  bottom: 16px;
  right: 0;
}

.footer-links svg {
  fill: white;
  transform: translate(2px, 2px);
}

footer p {
  font-size: calc(var(--base-textsize) / 1.6);
}

footer {
  position: absolute;
  right: 24px;
  bottom: 24px;
  color: var(--main-text);
}

.popup {
  position: absolute;
  color: #fff;
  font-size: calc(var(--base-textsize) / 1.6);
  background-color: rgba(0, 0, 0, 0.75);
  padding: 8px;
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0px) translateX(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 999;
}

.popup.show {
  opacity: 1;
  transform: translateY(-20px);
}

.popup.popup-animate {
  transform: translateY(-20px) scale(1.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: max-content;
  transition: 0.3s ease;
}

.upper,
.lower {
  display: flex;
  gap: 1.5rem;
}

.upper {
  margin-left: 48px;
}

.menu-links a {
  width: 64px;
  height: 64px;
  padding: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius);
  color: white;
  font-size: 28px;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.menu-links a:hover {
  transform: scale(1.06);
  background-color: rgba(255, 255, 255, 0.05);
}

.fa-youtube {
  color: #ff0000;
}

.fa-soundcloud {
  color: #ff6518;
}

.fa-twitter {
  color: #1da1f2;
}

.fa-instagram {
  color: #c46cff;
}

.fa-spotify {
  color: #1db954;
}

.fa-discord {
  color: #738adb;
}

#cursor {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.01);
  backdrop-filter: invert(100%);
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, opacity 0.2s ease;
  will-change: transform;
}

#cursor.click {
  width: 30px;
  height: 30px;
  transition: width 0.1s ease, height 0.1s ease;
}

#cursor.active {
  width: 65px;
  height: 65px;
}

@media (hover: none) and (pointer: coarse) {
  #cursor {
    display: none !important;
  }
}

.parallax {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
  background-color: #000;
  user-select: none;
}

.parallax .layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.layer-3 {
  background-image: url("assets/Untitled708_Restored2_20250504142621.webp");
}

.layer-1 {
  background-image: url("assets/Untitled700_Restored_20250504141414.webp");
}

.layer-2-0,
.layer-2-1,
.layer-2-2 {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.layer-2-0,
.layer-2-1 {
  z-index: 1;
}

.layer-2-2 {
  z-index: 0;
}

.faq-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: absolute;
  top: 0;
  transform: translateX(120%);
}

.faq-section.show {
  transform: translateX(0%);
}

.menu-links,
.faq-section {
  transition: transform 0.5s ease;
}

.menu-links.hide {
  transform: translateX(-120%);
}

.faq-question {
  font-weight: 600;
  font-size: 16px;
}

.faq-answer {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 8px;
}

.faq-back {
  font-size: 14px;
  font-weight: 600;
  max-width: fit-content;
  margin-left: auto;
}

.faq-item {
  margin: 10px 0px 10px 0px;
  padding: 0px 20px 0px 0px;
  max-height: 30vh;
  width: 100%;
  overflow-y: auto;
  scrollbar-color: #ffffff56 transparent;
  scrollbar-width: thin;
}

.new-releases-notice {
  position: fixed;
  top: 16px;
  left: 16px;
  width: 320px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.releases-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.releases-title {
  font-weight: 600;
  font-size: 16px;
  margin: 0;
}

.releases-close {
  background: none;
  border: none;
  color: var(--main-text);
  cursor: pointer;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
}

.releases-close:hover {
  transform: scale(1.3);
}

.releases-close:active {
  transform: scale(0.95);
}

.releases-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 300px;
}

.release-item {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 8px;
  border-radius: 8px;
  transition: 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.release-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.02);
}

.release-item img {
  width: 150px;
  height: 150px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.release-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.release-name {
  font-size: 12px;
  line-height: 1.4;
  word-break: break-word;
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 8px;
}

.release-type {
  font-size: 11px;
  opacity: 0.8;
  margin: 0;
}

.item-4 .release-item {
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: none;
  display: block;
  position: relative;
}

.item-4 .release-item:hover {
  background: none;
  transform: none;
}

.item-4 .release-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.item-4 .release-item .release-info {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  padding: 24px 24px 44px 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.item-4:hover .release-info {
  transform: translateY(-8px);
}

.item-4 .release-item .release-name {
  font-size: 16px;
  font-weight: 600;
  border-bottom: none;
  padding-bottom: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.item-4 .release-item .release-type {
  font-size: 12px;
  opacity: 0.9;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.update-stamp {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  color: var(--main-text);
  padding: 4px;
  box-sizing: border-box;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  opacity: 0.7;
  letter-spacing: 1px;
}

.status-dot {
  width: 6px;
  height: 6px;
  background-color: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 8px #00ff88;
  animation: pulse 2s infinite;
}

.date-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.date-info .label {
  font-size: 10px;
  opacity: 0.5;
}

.date-info .date-val {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -1px;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.5;
    box-shadow: 0 0 0px #00ff88;
  }

  50% {
    opacity: 1;
    box-shadow: 0 0 10px #00ff88;
  }
}

.item-6 {
  background: radial-gradient(circle at bottom right, #1a2e1a, #050a05);
  position: relative;
  overflow: hidden;
}

.visitor-counter {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  color: var(--main-text);
  padding: 4px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

.organic-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.organic-particles span {
  position: absolute;
  bottom: -10px;
  background: #aaffaa;
  border-radius: 50%;
  box-shadow: 0 0 4px #aaffaa;
  opacity: 0;
  animation: floatUp 6s infinite ease-in-out;
}

.organic-particles span:nth-child(1) {
  width: 4px;
  height: 4px;
  left: 20%;
  animation-duration: 5s;
  animation-delay: 0s;
}

.organic-particles span:nth-child(2) {
  width: 3px;
  height: 3px;
  left: 50%;
  animation-duration: 7s;
  animation-delay: 2s;
}

.organic-particles span:nth-child(3) {
  width: 5px;
  height: 5px;
  left: 80%;
  animation-duration: 6s;
  animation-delay: 1s;
}

.organic-particles span:nth-child(4) {
  width: 2px;
  height: 2px;
  left: 35%;
  animation-duration: 8s;
  animation-delay: 4s;
}

.organic-particles span:nth-child(5) {
  width: 4px;
  height: 4px;
  left: 65%;
  animation-duration: 5.5s;
  animation-delay: 0.5s;
}

@keyframes floatUp {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }

  20% {
    opacity: 0.8;
  }

  50% {
    transform: translateY(-30px) translateX(10px);
  }

  80% {
    opacity: 0.6;
  }

  100% {
    transform: translateY(-60px) translateX(-5px);
    opacity: 0;
  }
}

.visitor-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 2;
  align-items: center;
  text-align: center;
}

.visitor-info .label {
  font-size: 13px;
  opacity: 0.8;
  color: #90d090;
}

.visitor-info .count-val {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -2px;
}

.visitor-info .count-val .approx {
  font-size: 12px;
  opacity: 0.5;
  font-weight: 300;
  letter-spacing: 0;
}

.floating-arrow-btn {
  position: fixed;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(150, 150, 150, 0.05) 100%);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  color: var(--main-text);
  font-size: 24px;
  cursor: pointer;
  z-index: 10000;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-arrow-btn:hover {
  transform: translateY(-50%) scale(1.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(150, 150, 150, 0.1) 100%);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.floating-arrow-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.floating-arrow-btn.active {
  right: 40px;
}

.floating-arrow-btn i {
  transition: transform 0.3s ease;
}

.floating-arrow-btn.rotated i {
  transform: rotate(180deg);
}

.conventional-layout {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 5000;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #060606;
  overflow: hidden;
  will-change: transform;
}

.conventional-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.conventional-scroll-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow-y: auto;
  scrollbar-color: #ffffff1f transparent;
  scrollbar-width: thin;
}

#blob1,
#blob2,
#blob3 {
  position: absolute;
  mix-blend-mode: normal;
  opacity: 0.4;
  /* Slightly increased opacity to compensate for gradient falloff */
  will-change: transform;
}

#blob1 {
  width: 125vw;
  height: 50vw;
  background: radial-gradient(ellipse at center, rgb(22, 0, 33) 0%, transparent 70%);
  transform: rotate(19deg);
  top: 25vh;
  left: -15vw;
}

#blob2 {
  width: 70vw;
  height: 60vw;
  background: radial-gradient(ellipse at center, rgb(0, 22, 18) 0%, transparent 70%);
  top: 50%;
  left: 20%;
}

#blob3 {
  width: 25vw;
  height: 120vh;
  background: radial-gradient(ellipse at center, rgb(0, 5, 28) 0%, transparent 70%);
  top: 23%;
  left: 75%;
}

#noiseLayer {
  display: none;
}

.noise-overlay-css {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.5'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0.12;
  mix-blend-mode: overlay;
  z-index: 11;
  pointer-events: none;
}

.conventional-layout.active {
  transform: translateX(0);
}

.conventional-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 40px;
  min-height: 100vh;
}

.conventional-header {
  margin-bottom: 40px;
  animation: fadeInDown 0.6s ease;
}

.header-content {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 32px !important;
}

.header-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.header-info h1 {
  margin: 0 0 8px 0;
  font-size: 32px;
  font-weight: 600;
  color: var(--main-text);
}

.header-info p {
  margin: 0;
  font-size: 16px;
  opacity: 0.8;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.item {
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  border-radius: 12px;
  padding: 20px;
  font-size: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.item-0 {
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
  min-height: 300px;
}

.item-1 {
  grid-column: 3;
  grid-row: 1;
}

.item-2 {
  grid-column: 3;
  grid-row: 2;
}

.item-3 {
  grid-column: 2 / span 2;
  grid-row: 3 / span 2;
}

.item-4 {
  grid-column: 1;
  grid-row: 3 / span 2;
}

.item.item-5 {
  grid-column: 1 / span 2;
  grid-row: 5;
  min-height: 300px;
  display: flex !important;
  overflow: hidden !important;
}

.item-6 {
  grid-column: 3;
  grid-row: 5;
}

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

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

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

@keyframes slideOut {
  to {
    opacity: 0;
    transform: translateX(-100px);
  }
}

body.conventional-active {
  overflow: hidden;
}

.soundcloud-card {
  text-decoration: none;
  color: white;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ff691dca 0%, #ff9335c8 100%);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.soundcloud-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23000000' fill-opacity='0.1' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.2;
  pointer-events: none;
}

.soundcloud-card:hover {
  transform: scale(1.02);
}

.sc-text,
.sc-icon {
  position: relative;
  z-index: 2;
}

.sc-text {
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  line-height: 1.1;
  font-family: 'JetBrains Mono', monospace;
  opacity: 1;
}

.sc-icon {
  font-size: 64px;
  align-self: flex-end;
  color: rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: rotate(-10deg) translate(5px, 15px);
}

.soundcloud-card:hover .sc-icon {
  transform: rotate(0deg) translate(-5px, 10px) scale(1.1);
  color: rgba(255, 255, 255, 1);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.gumroad-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  text-decoration: none;
  color: #fff;
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  transition: transform 0.3s ease, background 0.3s ease;
}

.gumroad-card:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
  transform: none;
}

.gumroad-img {
  flex: 1;
  width: 100%;
  background-size: cover;
  background-position: center;
  min-height: 120px;
  position: relative;
}

.gumroad-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.gumroad-info {
  padding: 24px 24px 44px 24px;
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.1), transparent);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.item-5:hover .gumroad-info {
  transform: translateY(-8px);
}

.gr-top {
  display: flex;
  margin-bottom: 2px;
}

.gr-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 4px;
}

.gr-tag {
  font-size: 10px;
  letter-spacing: 1px;
  background: #ff0055;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
}

.gr-price {
  font-weight: 600;
  color: #00ff88;
}

.gr-title {
  font-size: 16px;
  margin: 0;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.gr-btn {
  font-size: 11px;
  opacity: 0.8;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ffaaff;
}

.gumroad-placeholder,
.gumroad-error {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  height: 100%;
  gap: 12px;
  font-size: 13px;
  opacity: 0.8;
}

@media (max-width: 768px) {
  :root {
    --section-margin: 4vw;
    --base-textsize: 13px;
  }

  body {
    overflow: hidden;
    width: 100%;
  }

  .parallax .layer {
    transform: none !important;
  }

  .section-left {
    margin: 15px;
    position: relative;
    top: 0;
    left: 0;
    transform: none !important;
    display: flex;
    flex-direction: column;
    gap: 3vw;
  }

  .bio {
    width: auto;
    height: auto;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: 1fr;
    gap: 3vw;
    margin: 0;
    min-height: 150px;
  }

  .bio-img {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .bio-img img {
    width: 100%;
    min-width: 70px;
    max-width: 100px;
    transform: none;
  }

  .bio-text {
    transform: none;
    max-width: 100%;
    display: flex;
    align-items: center;
  }

  .layer-2-1 {
    display: block;
  }

  .blur-box {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .simple-box:hover,
  .button:hover,
  .menu-links a:hover,
  .release-item:hover,
  .social-card:hover,
  .footer-links-conv a:hover,
  .floating-arrow-btn:hover,
  .soundcloud-card:hover {
    transform: none !important;
    box-shadow: none !important;
  }



  .soundcloud-card:hover .sc-icon {
    transform: rotate(-10deg) translate(10px, 10px) !important;
    color: rgba(255, 255, 255, 0.2) !important;
  }

  .header-text {
    font-size: clamp(11px, 2.8vw, 13px);
    line-height: 1.4;
  }

  .button-shop,
  .button-discography {
    width: max-content;
    margin: 0;
    padding: 3vw 5vw;
    font-size: clamp(12px, 3vw, 14px);
  }

  .section-right {
    position: relative;
    top: auto;
    left: 0;
    right: 0;
    padding-top: 40px;
    margin: 15px;
    padding-right: 5px;
    transform: none !important;
    width: auto;
  }

  .menu-links {
    width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .upper,
  .lower {
    display: contents;
  }

  .menu-links a {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    padding: 0;
    font-size: 30px;
  }

  @media (max-width: 320px) {
    .menu-links {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  .faq-section {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    transform: translateX(calc(100vw));
    display: flex;
    flex-direction: column;
  }

  .faq-section.show {
    transform: translateX(0);
  }

  .faq-back {
    font-size: clamp(12px, 3vw, 14px);
    padding: 3vw 5vw;
  }

  .faq-item {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 10px;
    margin: 0;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }

  .faq-question {
    font-size: clamp(13px, 3.5vw, 16px);
    margin-bottom: 2vw;
  }

  .faq-answer {
    font-size: clamp(11px, 2.8vw, 14px);
    line-height: 1.5;
    margin-bottom: 4vw;
  }

  footer {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3vw;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
  }

  footer p {
    font-size: clamp(9px, 2.2vw, 11px);
  }

  .footer-links {
    position: relative;
    bottom: auto;
    right: auto;
    display: flex;
    gap: 3vw;
    align-items: center;
  }

  .footer-links a {
    font-size: clamp(14px, 3.5vw, 18px);
  }

  .footer-links svg {
    width: clamp(14px, 3.5vw, 17px);
    height: clamp(14px, 3.5vw, 17px);
  }

  #cursor {
    display: none !important;
  }

  .new-releases-notice {
    display: none !important;
  }

  .floating-arrow-btn {
    right: 20px;
    top: auto;
    bottom: 85px;
    transform: none;
    width: 45px;
    height: 45px;
    font-size: 18px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .floating-arrow-btn:hover {
    transform: scale(1.1);
  }

  .floating-arrow-btn:active {
    transform: scale(0.95);
  }

  .conventional-container {
    padding: 20px 15px;
  }

  .header-content {
    padding: 16px !important;
    gap: 16px;
  }

  .header-logo {
    width: 60px;
    height: 60px;
  }

  .header-info h1 {
    font-size: 24px;
  }

  .header-info p {
    font-size: 13px;
  }

  .grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .item-0,
  .item-1,
  .item-2,
  .item-3,
  .item-4,
  .item.item-5,
  .item-6 {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    min-height: 250px !important;
  }

  .item-3 {
    min-height: 450px !important;
  }

  .item iframe {
    width: 100%;
    height: 100%;
  }
}