canvas {
  display: block;
  position: fixed;
  inset: 0;
  z-index: -1; /* detrás del contenido */
  width: 100%;
  height: 100%;
  background-color: #1A0929;
}

.tunestrike-portrait-div {
  max-width: 1000px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background: radial-gradient(circle, #5053C7 0%, #1B0A2A 100%);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 40px;
  padding-top: 25px;
}

.tunestrike-portrait-img {
  width: 100%;
  height: auto;
}

.tunestrike-portrait-description {
  color: white;
  font-family: 'Good Times', sans-serif;
  font-size: 14px;
  text-align: center;
  padding: 10px;
  line-height: 2;
  max-width: 750px;
  letter-spacing: 1px;
  font-weight: normal;
}

/* Steam button styles */
.steam-button {
  /* remove native button styles */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 0;
  padding: 0;
  background-color: transparent;

  /* show content centered over the SVG background */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  /* smaller, responsive size */
  width: clamp(180px, 40vw, 240px);
  aspect-ratio: 298 / 61;    /* intrinsic ratio of SVG */
  height: auto;

  background-image: url('/public/assets/images/button.svg');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  color: #ffffff;
  text-decoration: none;
  user-select: none;

  margin-top: 15px;
}

/* show icon and text centered on top of the background */
.steam-button .steam-icon {
  height: 18px;
  width: auto;
  flex: 0 0 auto;
}

.steam-button .steam-text {
  font-family: 'Good Times', sans-serif;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.steam-button:hover { filter: brightness(1.03); }

.steam-button:active { transform: translateY(1px); }

/* optional: focus ring for keyboard users */
.steam-button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 2px;
}

/**********************************************************
                        TRAILER 
***********************************************************/

.trailer-and-socials {
  max-width: 1000px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-top: 25px;

  background-color: rgba(94, 126, 207, 0.18);
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(8px);

  padding: 25px 50px 50px 50px;
}

@supports not ((backdrop-filter: blur(25px)) or (-webkit-backdrop-filter: blur(8px))) {
  .trailer-and-socials { background-color: rgba(94,126,207,0.35); }
}

.trailer-iframe {
  width: 100%;
  height: 500px;
}

.trailer-title {
  color: white;
  font-family: 'Good Times', sans-serif;
  font-size: 20px;
  padding: 10px 10px 10px 0;
  line-height: 2;
}

.trailer-subtitle {
  color: white;
  font-family: 'Good Times', sans-serif;
  font-size: 10px;
  padding: 10px 10px 10px 0;
  line-height: 2;
  letter-spacing: 1px;
  font-weight: normal;
  margin-bottom: 10px;
}

.copyright {
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Good Times', sans-serif;
  font-size: 14px;
  padding: 10px 10px 10px 0;
  line-height: 2;
  letter-spacing: 1px;
  font-weight: normal;
  padding: 50px;
  text-align: center;
}