.fadeout-horizontal {
  --fade-size: 5rem;

  mask-image: linear-gradient(
    to right,
    transparent,
    black var(--fade-size),
    black calc(100% - var(--fade-size)),
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black var(--fade-size),
    black calc(100% - var(--fade-size)),
    transparent
  );

  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;

  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
}


.construction-bar {
  background: #1ea59e;
  color: #111;
  text-align: center;
  padding: 8px 0;
  font-weight: bold;
  font-size: 0.95em;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

body {
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
  background: radial-gradient(circle at 30% 30%, rgba(30, 165, 158, 0.1), transparent 40%),
              radial-gradient(circle at 70% 70%, rgba(30, 165, 158, 0.08), transparent 40%),
              #0e0e10;
  color: #e0e0e0;
  text-align: center;
}

.profile-img {
  width: 40vw;               /* 40% of the viewport width */
  max-width: 150px;          /* but never larger than 150px */
  height: auto;              /* maintain aspect ratio */
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 1rem auto;
}

.hero {
  padding: 80px 20px;
}

@keyframes float {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-5px); }
  100% { transform: translateY(0px); }
}

.sfx-project {
  text-align: center;
  margin-top: 2rem;
}

.sfx-title {
  font-size: 1.5rem;
  color: #bdbeea; /* or your desired color */
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 4em;
  color: #1ea59e;
  text-shadow: 0 0 12px rgba(30, 165, 158, 0.4);
  animation: float 6s ease-in-out infinite;
  margin: 0;
}

.hero p {
  font-size: 1.2em;
  margin: 20px 0;
  color: #ccc;
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 30px;
  font-size: 1em;
  font-weight: bold;
  border-radius: 10px;
  background: linear-gradient(135deg, #1ea59e, #0e605c);
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(30, 165, 158, 0.4);
  border: 1px solid rgba(30, 165, 158, 0.5);
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 18px rgba(30, 165, 158, 0.7);
  background: linear-gradient(135deg, #24cfc6, #1ea59e);
}

.studio-marquee {
  background: #111;
  overflow: hidden;          /* hides overflow */
  height: 40px;
  display: flex;
  align-items: center;
  color: #ccc;
  font-weight: 500;
  font-size: 1em;
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  width: max-content;        /* width equals combined content */
  animation: scroll-left 40s linear infinite;
}

.marquee-content {
  display: flex;
  flex-shrink: 0;
  gap: 60px;
  padding-right: 60px;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50%));
  }
}

.media-section {
  display: grid;
  grid-template-columns:
    2rem              /* left gap */
    minmax(300px, 2fr) /* featured tracks */
    2rem              /* middle gap */
    minmax(300px, 1fr) /* showreels */
    2rem;             /* right gap */
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
  width: 100%;
}

/* Grid placement */
.featured-tracks {
  grid-column: 2;
  width: 100%;
}

.showreels {
  grid-column: 4;
  width: 100%;
}

/* Mobile stacking */
@media (max-width: 767px) {
  .media-section {
    display: flex;
    flex-direction: column;
    padding: 2rem 1rem;
    gap: 2rem;
  }
  .featured-tracks,
  .showreels {
    width: 100%;
    max-width: 100%;
  }
}

/* Video styling */
.video-container video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  margin-bottom: 1rem;
}

.section h2 {
  color: #a0d7d2; /* soft, readable turquoise tone */
  font-size: 2.5em;
  margin-bottom: 10px;
}

#demos p {
  margin-bottom: 30px; /* Adjust as needed */
}

.audio-player {
  margin: 20px auto 40px auto;
  max-width: 400px;
  background: rgba(30, 165, 158, 0.15); /* subtle turquoise glow */
  padding: 20px;
  border-radius: 12px;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 15px rgba(30, 165, 158, 0.5);
  border: 1px solid rgba(30, 165, 158, 0.6);
}

.audio-player p {
  margin: 6px 0 10px 0; /* TOP | RIGHT | BOTTOM | LEFT */
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #a0d7d2; /* lighter turquoise-ish text */
  font-weight: 500;
}

audio {
  width: 100%;
  background-color: transparent;
  accent-color: #1ea59e; /* turquoise controls tint */
  outline: none;
  filter: drop-shadow(0 0 2px rgba(30, 165, 158, 0.7));
  border-radius: 6px;
}

a.discord-link {
  color: #1ea59e;
  text-decoration: none;
  font-weight: 500;
}

a.discord-link:hover {
  text-decoration: underline;
}

