@font-face {
  font-family: 'Shine In Valentin';
  src: url('../fonts/shine-in-valentin.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #050509;
  --bg-soft: #0b0b12;
  --panel: rgba(15, 16, 26, 0.88);
  --panel-strong: rgba(18, 19, 32, 0.96);
  --panel-muted: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.2);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.78);
  --muted-soft: rgba(255, 255, 255, 0.62);
  --shadow-lg: 0 24px 56px rgba(0, 0, 0, 0.38);
  --shadow-md: 0 16px 32px rgba(0, 0, 0, 0.28);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-pill: 999px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

.section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  transition: transform 0.4s ease;
  will-change: transform;
}

.section.over {
  z-index: 5;
}

.section.under {
  z-index: 1;
}

.hero-section {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 100svh;
  height: 100svh;
  padding: 0 1.7rem 4rem;
  position: relative;
  overflow: hidden;
  background-image: url('../images/artist/maleja-con-guitarra.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center -1.25rem;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background:
    linear-gradient(180deg, rgba(8, 4, 14, 0) 0%, rgba(10, 6, 18, 0.28) 38%, rgba(7, 6, 14, 0.74) 100%),
    radial-gradient(circle at 50% 0, rgba(255, 104, 184, 0.1), transparent 52%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 980px;
  padding: 0 1.7rem;
  display: grid;
  justify-items: center;
  text-align: center;
  transform: translateY(-3rem);
}

.hero-title {
  font-family: 'Shine In Valentin', 'Space Grotesk', sans-serif;
  font-size: clamp(3.6rem, 8.8vw, 6.6rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.5px;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.68);
}

.hero-sub {
  margin-top: 1.5rem;
  max-width: 48rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.12rem, 2vw, 1.4rem);
  line-height: 1.45;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.7);
}

.hero-btns {
  margin-top: 2.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-width: 232px;
  padding: 1.08rem 2.2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--text);
  text-decoration: none;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  overflow: hidden;
  isolation: isolate;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  transition:
    transform 0.28s ease,
    filter 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}

.btn i {
  font-size: 0.98rem;
}

.primary {
  border-color: transparent;
  background:
    linear-gradient(135deg, rgba(255, 71, 170, 0.96), rgba(205, 67, 212, 0.92) 52%, rgba(135, 42, 104, 0.96)) padding-box,
    linear-gradient(120deg, rgba(255, 255, 255, 0.95), rgba(255, 153, 222, 0.65), rgba(135, 222, 255, 0.55), rgba(255, 255, 255, 0.92)) border-box;
  background-size: 100% 100%, 200% 200%;
  box-shadow: 0 18px 34px rgba(255, 53, 156, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: primary-border-flow 4.5s linear infinite;
}

.primary::before {
  content: "";
  position: absolute;
  inset: -35%;
  z-index: -1;
  opacity: 0.95;
  filter: blur(18px);
  background:
    radial-gradient(circle at 25% 35%, rgba(255, 255, 255, 0.26), transparent 22%),
    radial-gradient(circle at 78% 28%, rgba(255, 204, 241, 0.18), transparent 24%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
  animation: primary-glow-pulse 4.5s ease-in-out infinite;
}

.primary:hover {
  filter: brightness(1.08);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 22px 42px rgba(255, 58, 163, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.secondary {
  color: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(25, 25, 34, 0.72), rgba(10, 10, 14, 0.88));
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.secondary:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.28);
  background: linear-gradient(180deg, rgba(33, 33, 44, 0.8), rgba(12, 12, 16, 0.92));
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.11);
}

@keyframes primary-border-flow {
  0% {
    background-position: 0% 50%, 0% 50%;
  }
  100% {
    background-position: 0% 50%, 150% 50%;
  }
}

@keyframes primary-glow-pulse {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.78;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

.tiktok-lives-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4.8rem, 8vw, 7rem) 1.35rem;
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 238, 125, 0.78), transparent 20%),
    radial-gradient(circle at 86% 22%, rgba(101, 199, 255, 0.74), transparent 22%),
    linear-gradient(135deg, #fff1a7 0%, #9ae1ff 44%, #62b8ff 72%, #ffe36b 100%);
}

.tiktok-lives-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.14), transparent 60%);
  pointer-events: none;
}

.newsletter-join-section {
  position: relative;
  overflow: hidden;
  padding: clamp(2.2rem, 5vw, 3.5rem) 1.35rem;
  background:
    radial-gradient(circle at 14% 28%, rgba(109, 205, 255, 0.3), transparent 20%),
    radial-gradient(circle at 86% 24%, rgba(255, 231, 108, 0.34), transparent 22%),
    linear-gradient(180deg, rgba(230, 248, 255, 0.96), rgba(254, 247, 202, 0.95));
}

.newsletter-join-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.12), transparent 58%);
  pointer-events: none;
}

.newsletter-join__inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 1.02fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: center;
  padding: clamp(1rem, 2vw, 1.3rem);
  border-radius: 34px;
  border: 1px solid rgba(23, 55, 116, 0.1);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.2)),
    rgba(255, 255, 255, 0.3);
  box-shadow:
    0 22px 50px rgba(34, 87, 164, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.newsletter-join__copy {
  display: grid;
  gap: 0.9rem;
  padding: clamp(0.55rem, 1vw, 0.9rem);
  color: #15345f;
}

.newsletter-join__eyebrow {
  justify-self: start;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(18, 75, 177, 0.14);
  color: #1d4f9f;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.newsletter-join__title {
  max-width: 15ch;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 3.7vw, 3.6rem);
  line-height: 1;
  color: #14325d;
  text-wrap: balance;
}

.newsletter-join__intro {
  max-width: 34rem;
  font-size: clamp(0.98rem, 1.8vw, 1.14rem);
  line-height: 1.6;
  color: rgba(21, 52, 95, 0.84);
}

.newsletter-join__form {
  display: grid;
  gap: 0.9rem;
  padding: clamp(0.8rem, 1.6vw, 1rem);
  border-radius: 28px;
  background:
    linear-gradient(150deg, rgba(14, 48, 96, 0.9), rgba(26, 96, 170, 0.84)),
    rgba(11, 33, 66, 0.8);
  border: 1px solid rgba(188, 225, 255, 0.16);
  box-shadow:
    0 20px 36px rgba(16, 49, 97, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.newsletter-join__field {
  display: grid;
  gap: 0.55rem;
}

.newsletter-join__field-label {
  color: rgba(240, 248, 255, 0.88);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.newsletter-join__field input {
  width: 100%;
  min-height: 58px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(214, 236, 255, 0.16);
  border-radius: 18px;
  background: rgba(7, 18, 38, 0.52);
  color: #f7fbff;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.newsletter-join__field input::placeholder {
  color: rgba(229, 239, 250, 0.48);
}

.newsletter-join__field input:focus {
  border-color: rgba(255, 232, 126, 0.54);
  background: rgba(9, 22, 44, 0.68);
  box-shadow:
    0 0 0 4px rgba(255, 232, 126, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.newsletter-join__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 58px;
  padding: 0.95rem 1.4rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffe86c, #ffd447);
  color: #12315b;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow:
    0 16px 28px rgba(255, 214, 71, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  cursor: pointer;
  transition: transform 0.24s ease, filter 0.24s ease, box-shadow 0.24s ease;
}

.newsletter-join__submit:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow:
    0 20px 32px rgba(255, 214, 71, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.newsletter-join__feedback {
  padding: 0.8rem 0.9rem;
  border-radius: 16px;
  font-size: 0.94rem;
  font-weight: 600;
}

.newsletter-join__feedback--error {
  background: rgba(255, 118, 118, 0.12);
  color: #ffd7d7;
  border: 1px solid rgba(255, 166, 166, 0.16);
}

.newsletter-join__feedback--success {
  background: rgba(161, 255, 205, 0.12);
  color: #d8fff0;
  border: 1px solid rgba(177, 255, 214, 0.16);
}

.newsletter-join__note {
  color: rgba(233, 243, 255, 0.72);
  font-size: 0.86rem;
  line-height: 1.45;
}

.newsletter-join__particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.7;
  filter: blur(2px);
}

.newsletter-join__particle--one {
  top: 20%;
  left: 8%;
  width: 124px;
  height: 124px;
  background: radial-gradient(circle, rgba(190, 238, 255, 0.88), rgba(82, 177, 255, 0.1));
  animation: tiktok-float-reverse 11s ease-in-out infinite;
}

.newsletter-join__particle--two {
  right: 10%;
  bottom: 14%;
  width: 142px;
  height: 142px;
  background: radial-gradient(circle, rgba(255, 246, 173, 0.9), rgba(255, 210, 88, 0.12));
  animation: tiktok-float-slow 10s ease-in-out infinite;
  animation-delay: -2.2s;
}

.tiktok-lives-section + .music-section,
.tiktok-preview-section + .music-section {
  margin-top: 0;
  padding-top: clamp(5.25rem, 7vw, 6.8rem);
}

.tiktok-lives__inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(1.6rem, 4vw, 3.2rem);
  align-items: center;
  padding: clamp(1.3rem, 2vw, 1.7rem);
  border-radius: 38px;
  border: 1px solid rgba(23, 55, 116, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.18)),
    rgba(255, 255, 255, 0.28);
  box-shadow:
    0 24px 60px rgba(34, 87, 164, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.tiktok-lives__content {
  display: grid;
  gap: 1.2rem;
  padding: clamp(1rem, 2vw, 1.4rem);
  color: #15345f;
}

.tiktok-lives__eyebrow {
  justify-self: start;
  padding: 0.68rem 1rem;
  border-radius: 999px;
  background: rgba(18, 75, 177, 0.14);
  color: #1d4f9f;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tiktok-lives__title {
  max-width: 13ch;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.4rem, 4.2vw, 4.35rem);
  line-height: 0.96;
  color: #14325d;
  text-wrap: balance;
}

.tiktok-lives__intro {
  max-width: 36rem;
  font-size: clamp(1rem, 1.9vw, 1.22rem);
  line-height: 1.65;
  color: rgba(21, 52, 95, 0.86);
}

.tiktok-lives__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.tiktok-lives__tag {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(32, 74, 140, 0.1);
  color: #16355f;
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: 0 14px 28px rgba(37, 90, 165, 0.08);
}

.tiktok-lives__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.3rem;
}

.tiktok-lives__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-width: 210px;
  min-height: 58px;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}

.tiktok-lives__cta--primary {
  background: linear-gradient(135deg, #205fe3, #17a0ff);
  color: #fdfcff;
  box-shadow: 0 18px 32px rgba(22, 92, 206, 0.22);
}

.tiktok-lives__cta--secondary {
  background: rgba(255, 246, 179, 0.84);
  color: #16355f;
  box-shadow: 0 18px 32px rgba(236, 201, 52, 0.2);
}

.tiktok-lives__cta:hover {
  transform: translateY(-3px);
  filter: brightness(1.04);
}

.tiktok-lives__visual {
  position: relative;
  min-height: clamp(420px, 52vw, 620px);
  display: grid;
  align-items: center;
}

.tiktok-lives__photo-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 480px);
  height: min(74vh, 600px);
  min-height: 420px;
  margin-left: auto;
  border-radius: 32px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.08)),
    #8fd9ff;
  border: 1px solid rgba(255, 255, 255, 0.36);
  box-shadow:
    0 28px 56px rgba(17, 79, 160, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.tiktok-lives__photo-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tiktok-lives__bubble {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 54px;
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: #16355f;
  border: 1px solid var(--bubble-border, rgba(255, 255, 255, 0.34));
  background: var(--bubble-bg, rgba(255, 255, 255, 0.28));
  box-shadow:
    0 18px 34px rgba(29, 86, 165, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
  animation: tiktok-bubble-float 5.8s ease-in-out infinite;
}

.tiktok-lives__bubble::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.tiktok-lives__bubble--sun {
  top: 34%;
  left: 16%;
  --bubble-bg: rgba(255, 229, 96, 0.42);
  --bubble-border: rgba(255, 225, 94, 0.62);
}

.tiktok-lives__bubble--blue {
  top: 60%;
  right: 12%;
  --bubble-bg: rgba(218, 245, 255, 0.38);
  --bubble-border: rgba(203, 235, 250, 0.68);
  animation-delay: -2.4s;
}

.tiktok-lives__particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.7;
  filter: blur(1px);
}

.tiktok-lives__particle--one {
  top: 10%;
  left: 4%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 250, 193, 0.95), rgba(255, 219, 88, 0.18));
  animation: tiktok-float-slow 10s ease-in-out infinite;
}

.tiktok-lives__particle--two {
  top: 18%;
  right: 12%;
  width: 128px;
  height: 128px;
  background: radial-gradient(circle, rgba(194, 240, 255, 0.92), rgba(44, 149, 255, 0.14));
  animation: tiktok-float-reverse 12s ease-in-out infinite;
}

.tiktok-lives__particle--three {
  bottom: 10%;
  left: 28%;
  width: 154px;
  height: 154px;
  background: radial-gradient(circle, rgba(255, 244, 140, 0.8), rgba(255, 203, 62, 0.12));
  animation: tiktok-float-slow 13s ease-in-out infinite;
  animation-delay: -3s;
}

.tiktok-lives__particle--four {
  bottom: 8%;
  right: 8%;
  width: 170px;
  height: 170px;
  background: radial-gradient(circle, rgba(177, 228, 255, 0.88), rgba(71, 166, 255, 0.14));
  animation: tiktok-float-reverse 11s ease-in-out infinite;
  animation-delay: -4s;
}

.tiktok-lives__particle--five {
  top: 46%;
  left: 48%;
  width: 96px;
  height: 96px;
  background: radial-gradient(circle, rgba(255, 246, 173, 0.92), rgba(255, 218, 102, 0.1));
  animation: tiktok-float-slow 8s ease-in-out infinite;
  animation-delay: -1.8s;
}

@keyframes tiktok-float-slow {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -18px, 0) scale(1.05);
  }
}

@keyframes tiktok-float-reverse {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, 18px, 0) scale(0.96);
  }
}

@keyframes tiktok-bubble-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.tiktok-preview-section {
  position: relative;
  overflow: hidden;
  padding: clamp(3.8rem, 7vw, 5.8rem) 1.35rem clamp(5.1rem, 8vw, 6.8rem);
  background:
    radial-gradient(circle at 16% 18%, rgba(107, 203, 255, 0.42), transparent 22%),
    radial-gradient(circle at 84% 18%, rgba(255, 227, 104, 0.48), transparent 24%),
    linear-gradient(180deg, #b6e9ff 0%, #dcf6ff 38%, #fff2b3 100%);
}

.tiktok-preview-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.14), transparent 58%);
  pointer-events: none;
}

.tiktok-preview__inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.35rem, 2vw, 1.75rem);
  border-radius: 40px;
  border: 1px solid rgba(22, 61, 129, 0.12);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.2)),
    rgba(255, 255, 255, 0.28);
  box-shadow:
    0 26px 60px rgba(34, 87, 164, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.tiktok-preview__content {
  display: grid;
  gap: 1.15rem;
  padding: clamp(0.95rem, 2vw, 1.35rem);
  color: #15345f;
}

.tiktok-preview__eyebrow {
  justify-self: start;
  padding: 0.68rem 1rem;
  border-radius: 999px;
  background: rgba(18, 75, 177, 0.14);
  color: #1d4f9f;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tiktok-preview__title {
  max-width: 12ch;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 0.98;
  color: #14325d;
  text-wrap: balance;
}

.tiktok-preview__intro {
  max-width: 34rem;
  font-size: clamp(1rem, 1.85vw, 1.16rem);
  line-height: 1.65;
  color: rgba(21, 52, 95, 0.86);
}

.tiktok-preview__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.tiktok-preview__tag {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(32, 74, 140, 0.1);
  color: #16355f;
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: 0 14px 28px rgba(37, 90, 165, 0.08);
}

.tiktok-preview__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.2rem;
}

.tiktok-preview__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-width: 220px;
  min-height: 58px;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}

.tiktok-preview__cta--primary {
  background: linear-gradient(135deg, #215fe3, #1aa0ff);
  color: #fdfcff;
  box-shadow: 0 18px 32px rgba(22, 92, 206, 0.22);
}

.tiktok-preview__cta--secondary {
  background: rgba(255, 246, 179, 0.84);
  color: #16355f;
  box-shadow: 0 18px 32px rgba(236, 201, 52, 0.2);
}

.tiktok-preview__cta:hover {
  transform: translateY(-3px);
  filter: brightness(1.04);
}

.tiktok-preview__media {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: end;
}

.tiktok-preview__frame {
  position: relative;
  width: min(100%, 530px);
  padding: 0.95rem;
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.22)),
    linear-gradient(135deg, rgba(255, 238, 145, 0.54), rgba(121, 206, 255, 0.48));
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow:
    0 28px 54px rgba(24, 85, 166, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.tiktok-preview__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.62rem 0.95rem;
  border-radius: 999px;
  background: rgba(20, 58, 112, 0.8);
  color: #f5fbff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(18, 56, 110, 0.2);
}

.tiktok-preview__video-shell {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  background: #0b1020;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.tiktok-preview__cover {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s ease;
}

.tiktok-preview__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 26%;
  transform: scale(1.14);
}

.tiktok-preview__cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 11, 24, 0.2), rgba(7, 11, 24, 0.05) 40%, rgba(7, 11, 24, 0.44) 100%),
    radial-gradient(circle at 50% 70%, rgba(255, 255, 255, 0.1), transparent 42%);
}

.tiktok-preview__play {
  position: absolute;
  left: 50%;
  bottom: 1.2rem;
  z-index: 1;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.68rem;
  min-height: 50px;
  padding: 0.62rem 1.05rem 0.62rem 0.72rem;
  border: 1px solid rgba(185, 222, 255, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(17, 57, 112, 0.92), rgba(26, 104, 186, 0.9)),
    rgba(14, 42, 88, 0.82);
  color: #f7fbff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 14px 26px rgba(18, 56, 110, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  cursor: pointer;
  transition: transform 0.24s ease, filter 0.24s ease, box-shadow 0.24s ease;
}

.tiktok-preview__play:hover {
  transform: translateX(-50%) translateY(-2px);
  filter: brightness(1.04);
  box-shadow:
    0 18px 30px rgba(18, 56, 110, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.tiktok-preview__play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.tiktok-preview__video-shell.is-playing .tiktok-preview__cover {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.02);
}

.tiktok-preview__embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  scrollbar-width: none;
}

.tiktok-preview__embed section {
  min-height: 100%;
}

.tiktok-preview__video-shell::-webkit-scrollbar,
.tiktok-preview__embed::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.tiktok-preview__video-shell iframe {
  width: 124% !important;
  height: 124% !important;
  min-width: 0 !important;
  margin: -19% 0 0 -12% !important;
  border: 0;
  display: block;
  scrollbar-width: none;
}

.tiktok-preview__particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.68;
  filter: blur(2px);
}

.tiktok-preview__particle--one {
  top: 18%;
  left: 6%;
  width: 168px;
  height: 168px;
  background: radial-gradient(circle, rgba(181, 232, 255, 0.92), rgba(71, 166, 255, 0.1));
  animation: tiktok-float-reverse 12s ease-in-out infinite;
}

.tiktok-preview__particle--two {
  top: 10%;
  right: 8%;
  width: 142px;
  height: 142px;
  background: radial-gradient(circle, rgba(255, 247, 173, 0.9), rgba(255, 213, 88, 0.12));
  animation: tiktok-float-slow 10s ease-in-out infinite;
  animation-delay: -2.2s;
}

.tiktok-preview__particle--three {
  bottom: 8%;
  left: 40%;
  width: 118px;
  height: 118px;
  background: radial-gradient(circle, rgba(197, 240, 255, 0.85), rgba(84, 177, 255, 0.1));
  animation: tiktok-float-reverse 9.5s ease-in-out infinite;
  animation-delay: -3s;
}

@media (max-width: 960px) {
  .tiktok-lives-section + .music-section,
  .tiktok-preview-section + .music-section {
    padding-top: 5rem;
  }

  .newsletter-join__inner {
    grid-template-columns: 1fr;
  }

  .newsletter-join__title {
    max-width: 100%;
  }

  .tiktok-lives__inner {
    grid-template-columns: 1fr;
  }

  .tiktok-preview__inner {
    grid-template-columns: 1fr;
  }

  .tiktok-lives__title {
    max-width: 16ch;
  }

  .tiktok-preview__title {
    max-width: 16ch;
  }

  .tiktok-lives__visual {
    min-height: 0;
  }

  .tiktok-preview__media {
    justify-items: center;
  }

  .tiktok-lives__photo-shell {
    width: min(100%, 520px);
    height: min(72vh, 560px);
    margin: 0 auto;
  }

  .tiktok-preview__frame {
    width: min(100%, 560px);
  }

  .tiktok-lives__bubble--sun {
    left: 14%;
  }

  .tiktok-lives__bubble--blue {
    right: 11%;
  }
}

@media (min-width: 768px) {
  .hero-section {
    background-image: url('../images/artist/desktop-guitarra-maleja.png');
    background-position: center top;
  }
}

@media (max-width: 767px) {
  .tiktok-lives-section + .music-section,
  .tiktok-preview-section + .music-section {
    padding-top: 4.5rem;
  }

  .hero-content {
    transform: translateY(-1.35rem);
  }

  .hero-title {
    font-size: clamp(3.3rem, 16vw, 4.8rem);
  }

  .hero-sub {
    max-width: 24rem;
    font-size: 1.02rem;
  }

  .hero-btns {
    margin-top: 2.2rem;
    gap: 0.9rem;
  }

  .tiktok-lives-section {
    padding-inline: 1rem;
  }

  .newsletter-join-section {
    padding-inline: 1rem;
  }

  .tiktok-preview-section {
    padding-inline: 1rem;
  }

  .tiktok-lives__content,
  .tiktok-lives__inner {
    padding-inline: 1rem;
  }

  .newsletter-join__inner {
    padding-inline: 1rem;
  }

  .tiktok-preview__content,
  .tiktok-preview__inner {
    padding-inline: 1rem;
  }

  .btn {
    min-width: 100%;
  }

  .tiktok-lives__title {
    max-width: 100%;
  }

  .tiktok-preview__title {
    max-width: 100%;
  }

  .tiktok-lives__actions,
  .tiktok-lives__tags {
    width: 100%;
  }

  .tiktok-preview__actions,
  .tiktok-preview__tags {
    width: 100%;
  }

  .tiktok-lives__cta {
    min-width: 0;
    width: 100%;
  }

  .tiktok-preview__cta {
    min-width: 0;
    width: 100%;
  }

  .tiktok-lives__photo-shell {
    min-height: 360px;
    height: min(68vh, 460px);
  }

  .tiktok-preview__frame {
    width: 100%;
    max-width: 520px;
  }

  .tiktok-lives__bubble {
    min-height: 48px;
    padding: 0.72rem 0.98rem;
    font-size: 0.92rem;
  }
}

@media (max-width: 420px) {
  .tiktok-lives-section + .music-section,
  .tiktok-preview-section + .music-section {
    padding-top: 3.8rem;
  }

  .hero-section {
    padding: 0 0.85rem 2.9rem;
    background-position: center top;
  }

  .hero-content {
    padding: 0 0.55rem;
    transform: translateY(-0.55rem);
  }

  .hero-title {
    max-width: 100%;
    padding-inline: 0.1rem;
    font-size: clamp(2.75rem, 18vw, 4.05rem);
    line-height: 0.94;
  }

  .hero-sub {
    margin-top: 0.95rem;
    max-width: 17.5rem;
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .hero-btns {
    width: 100%;
    margin-top: 1.5rem;
    gap: 0.7rem;
  }

  .tiktok-lives-section {
    padding: 4.1rem 0.9rem;
  }

  .newsletter-join-section {
    padding: 2.2rem 0.9rem;
  }

  .tiktok-preview-section {
    padding: 3.75rem 0.9rem 4.4rem;
  }

  .tiktok-lives__inner {
    padding: 1rem;
    border-radius: 28px;
  }

  .newsletter-join__inner {
    padding: 1rem;
    border-radius: 28px;
  }

  .tiktok-preview__inner {
    padding: 1rem;
    border-radius: 28px;
  }

  .tiktok-lives__content {
    padding: 0.55rem 0.25rem 0.2rem;
  }

  .tiktok-preview__content {
    padding: 0.55rem 0.25rem 0.2rem;
  }

  .tiktok-lives__title {
    font-size: clamp(2rem, 12vw, 2.65rem);
  }

  .newsletter-join__title {
    font-size: clamp(1.8rem, 10vw, 2.4rem);
  }

  .tiktok-preview__title {
    font-size: clamp(1.95rem, 11vw, 2.55rem);
  }

  .tiktok-lives__intro {
    font-size: 0.94rem;
  }

  .newsletter-join__intro {
    font-size: 0.94rem;
  }

  .tiktok-preview__intro {
    font-size: 0.94rem;
  }

  .newsletter-join__field input,
  .newsletter-join__submit {
    min-height: 54px;
  }

  .tiktok-lives__photo-shell,
  .tiktok-lives__photo-shell img {
    border-radius: 26px;
  }

  .tiktok-preview__frame {
    padding: 0.72rem;
    border-radius: 28px;
  }

  .tiktok-preview__video-shell {
    border-radius: 22px;
  }

  .tiktok-preview__badge {
    top: 0.72rem;
    left: 0.72rem;
    min-height: 38px;
    padding: 0.54rem 0.8rem;
    font-size: 0.72rem;
  }

  .tiktok-lives__photo-shell {
    min-height: 320px;
    height: 360px;
  }

  .tiktok-lives__particle--one,
  .tiktok-lives__particle--four {
    width: 130px;
    height: 130px;
  }

  .tiktok-lives__particle--three {
    width: 112px;
    height: 112px;
  }

  .tiktok-lives__bubble {
    font-size: 0.84rem;
  }

  .btn {
    min-width: 0;
    width: 100%;
    padding: 0.9rem 0.95rem;
    font-size: 0.93rem;
    line-height: 1.15;
    white-space: nowrap;
  }
}

@media (max-width: 340px) {
  .tiktok-lives-section + .music-section,
  .tiktok-preview-section + .music-section {
    padding-top: 3.35rem;
  }

  .hero-section {
    padding: 0 0.65rem 2.45rem;
  }

  .hero-content {
    padding: 0 0.3rem;
  }

  .hero-title {
    font-size: clamp(2.35rem, 17vw, 3.25rem);
  }

  .hero-sub {
    max-width: 15rem;
    font-size: 0.82rem;
  }

  .hero-btns {
    margin-top: 1.25rem;
    gap: 0.55rem;
  }

  .btn {
    padding: 0.82rem 0.7rem;
    font-size: 0.86rem;
  }
}
