body {
  background-color: #000 !important;
  color: #FFD700;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
}
/* Bright red glow for artist cards on Other Artists page */
.other-artist-card {
  box-shadow:
    0 0 34px 11px rgba(0,64,255,0.28), /* blue glow further reduced */
    0 0 22px 5px rgba(0,64,255,0.16), /* secondary blue glow further reduced */
    0 0 13px 3px rgba(255,215,0,0.07),  /* gold outer glow further reduced */
    0 0 7px 1px rgba(255,215,0,0.10) inset, /* gold inner glow further reduced */
    0 2px 3px rgba(255,215,0,0.12);     /* gold accent for depth further reduced */
  border-radius: 18px;
}
/* Force desktop two-column layout for home page */
@media only screen and (min-width: 701px) {
  .home-flex-row {
    display: flex !important;
    flex-direction: row !important;
    gap: 40px !important;
    justify-content: center !important;
    align-items: flex-start !important;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
  }
  .home-flex-col {
    min-width: 250px !important;
    width: 50% !important;
    box-sizing: border-box !important;
    margin-bottom: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    min-height: 900px !important;
  }
}
/* Mobile fix for home page columns, desktop untouched */
@media only screen and (max-width: 700px) {
  .home-flex-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    align-items: stretch !important;
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }
  .home-flex-col {
    min-width: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin-bottom: 24px !important;
    display: block !important;
  }
  /* Removed mobile-only column order reversal for consistent layout. */
  /* Removed unused accordion and panel styles after restoring dropdown list layout. */
}
#welcomeText.show {
  opacity: 1;
}
#welcomeText.hide {
  opacity: 0;
  transition: opacity 0.7s ease;
}

/* Curtain Animation Reset */
#curtainLeft,
#curtainRight {
  position: fixed;
  width: 50vw;
  height: 100vh;
  top: 0;
  z-index: 30;
  animation: openCurtain 3.5s ease-out forwards;
}

/* Left curtain slides left, right curtain slides right */
#curtainLeft {
  left: 0;
  transform-origin: left;
  animation-delay: 1.2s;
  border-right: none;
  box-shadow: none;
}
#curtainRight {
  right: 0;
  transform-origin: right;
  animation-delay: 1.2s;
  border-left: none;
  box-shadow: none;
}

@keyframes openCurtain {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}

/* Center wrapper for logo and button */
.centerWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 15;
}

#logo {
  width: 400px;
  max-width: 90vw;
  height: auto;
  background: transparent;
  border: none !important;
  opacity: 0;
  filter: brightness(0);
  animation: logoPopIn 3.5s cubic-bezier(0.23, 1.12, 0.32, 1) 3.5s forwards;
}

@keyframes logoPopIn {
  0% {
    opacity: 0;
    filter: brightness(0);
    transform: scale(0.6);
  }
  60% {
    opacity: 1;
    filter: brightness(0.7);
    transform: scale(1.15);
  }
  80% {
    filter: brightness(1);
    transform: scale(0.98);
  }
  100% {
    opacity: 1;
    filter: brightness(1);
    transform: scale(1);
  }
}

#enterHome {
  background: linear-gradient(135deg, #FFD700 0%, #FFF700 40%, #FFD700 100%);
  color: #111;
  border: 2px solid #111;
  border-radius: 30px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4), 0 0 12px #FFD700 inset;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1em;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 0.5em 1.5em;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
  outline: none;
  text-shadow: 0 1px 0 #fff, 0 2px 4px #FFD700;
  margin-top: 2rem;
  opacity: 0;
  animation: fadeInEnterHome 2s ease-in 4.5s forwards;
}

@keyframes fadeInEnterHome {
  to {
    opacity: 1;
  }
}

.curtainImg {
  background: url('images/bright-curtain.png') center center no-repeat;
  background-size: cover;
}

