.about-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
  z-index: 0;
  pointer-events: none;
  display: block;
}
.about-bg-img--mobile {
  display: none;
}
@media (max-width: 600px) {
  .about-bg-img {
    display: none;
  }
  .about-bg-img--mobile {
    display: block;
  }
}
.section--inner {
  min-height: clamp(800px, 100vh, 1400px);
  position: relative;
}
.about-content {
  position: relative;
  z-index: 1;
  width: 80%;
  margin-left: 36%;
  padding: 60px 0;
}
.about-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.about-name {
  font-family: "Cinzel Decorative", cursive;
  font-size: clamp(20px, 4vw, 60px);
  font-weight: 900;
  line-height: 1;
  margin: 0;
  background: linear-gradient(
    135deg,
    var(--pink) 0%,
    var(--gold-light) 55%,
    var(--green) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: clamp(2px, 0.5vw, 5px);
  text-align: center;
}
.about-top-row {
  padding-top: 60px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 170px;
  align-items: start;
}
.about-text-col {
  min-width: 0;
  width: 155%;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.about-bio {
  font-size: 28px;
  line-height: 1.7;
  color: var(--cream);
  opacity: 0.85;
  margin: 0;
}
.about-bio strong {
  color: var(--gold);
  opacity: 1;
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.about-tag {
  font-family: "IM Fell English SC", serif;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--gold);
  opacity: 0.75;
  border: 1px solid rgba(245, 232, 168, 0.25);
  padding: 7px 14px;
  white-space: nowrap;
  transition:
    opacity 0.3s,
    border-color 0.3s,
    background 0.3s;
}
.about-tag:hover {
  opacity: 1;
  border-color: rgba(245, 232, 168, 0.5);
  background: rgba(245, 232, 168, 0.04);
}
.about-tag--open {
  flex-basis: auto;
  text-align: center;
  border-color: rgba(240, 168, 192, 0.55);
  color: rgba(240, 168, 192, 1);
  opacity: 1;
  background: rgba(240, 168, 192, 0.07);
}
.about-twitch-col {
  padding-top: 20px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 62px;
}
.twitch-embed-wrap {
  border: 2px solid rgba(145, 70, 255, 0.25);
  overflow: hidden;
  background: #0e0e10;
  width: 154%;
  max-width: 840px;
}
.twitch-embed-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.twitch-embed-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.twitch-embed-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  gap: 8px;
}
.twitch-embed-status {
  display: flex;
  align-items: center;
  gap: 8px;
}
.twitch-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(245, 232, 168, 0.3);
  flex-shrink: 0;
}
.twitch-status-dot--live {
  background: #9146ff;
  box-shadow: 0 0 6px rgba(145, 70, 255, 0.8);
  animation: liveDotBlink 1.4s ease-in-out infinite;
}
.twitch-status-dot--offline {
  background: rgba(245, 232, 168, 0.2);
}
.twitch-status-text {
  font-family: "IM Fell English SC", serif;
  font-size: 13px;
  letter-spacing: 2px;
  color: rgba(245, 232, 168, 0.7);
}
.twitch-status-text--live {
  color: #9146ff;
}
.twitch-embed-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "IM Fell English SC", serif;
  font-size: 13px;
  letter-spacing: 2px;
  color: rgba(145, 70, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s;
}
.twitch-embed-cta:hover {
  color: #9146ff;
}
.about-social-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  padding-left: 0;
  padding-top: 45px;
  width: 154%;
  max-width: 640px;
}

.about-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 10px;
  min-height: 44px;
  border: 1px solid rgba(245, 232, 168, 0.28);
  font-family: "IM Fell English SC", serif;
  font-size: 12px;
  letter-spacing: 2px;
  color: rgba(245, 232, 168, 0.75);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.02);
  transition:
    color 0.28s,
    border-color 0.28s,
    background 0.28s,
    transform 0.25s,
    box-shadow 0.28s;
}
.about-social-svg {
  width: 13px;
  height: 13px;
  display: block;
  flex-shrink: 0;
}
.about-social-btn--twitch:hover {
  background: rgba(145, 70, 255, 0.85);
  border-color: rgba(145, 70, 255, 1);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(145, 70, 255, 0.3);
}
.about-social-btn--x:hover {
  background: rgba(240, 168, 192, 0.88);
  border-color: rgba(240, 168, 192, 1);
  color: #0d0d0d;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(240, 168, 192, 0.25);
}
.about-social-btn--vgen:hover {
  background: rgba(143, 168, 50, 0.88);
  border-color: rgba(143, 168, 50, 1);
  color: #0d0d0d;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(143, 168, 50, 0.25);
}
@keyframes liveDotBlink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.75);
  }
}
@keyframes bloomBreath {
  0%,
  100% {
    opacity: 0.6;
    transform: translateX(-50%) scaleX(0.9);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scaleX(1.08);
  }
}
@keyframes aboutFloat {
  0% {
    transform: translateX(-50px) translateY(0px) rotate(0deg)
      scale(var(--img-scale));
  }
  25% {
    transform: translateX(-50px) translateY(-10px) rotate(0.3deg)
      scale(var(--img-scale));
  }
  50% {
    transform: translateX(-50px) translateY(-18px) rotate(0deg)
      scale(var(--img-scale));
  }
  75% {
    transform: translateX(-50px) translateY(-8px) rotate(-0.3deg)
      scale(var(--img-scale));
  }
  100% {
    transform: translateX(-50px) translateY(0px) rotate(0deg)
      scale(var(--img-scale));
  }
}
