.lynk-home-new {
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --text-soft: currentColor;
  --accent: #00F2AD;
  --type-section-title: clamp(2rem, 3.4vw, 2.4rem);
  --type-section-desc: 1rem;
  --type-card-title: 1.1rem;
  --type-meta: 0.92rem;
  --type-tag: 0.74rem;
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
  color: #F7E7CE;
  font-family: inherit;
  max-width: 80rem;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  /* Đảm bảo không bị overflow horizontal */
  box-sizing: border-box;
  width: 100%;
}

/* Elegant separators between major sections */
.lynk-home-new > .lynk-home-block,
.lynk-home-new > .lynk-home-grid-2 {
  position: relative;
  padding-top: 2.25rem;
}

.lynk-home-new > .lynk-home-block::before,
.lynk-home-new > .lynk-home-grid-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(560px, 86%);
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(0, 242, 173, 0),
    rgba(0, 242, 173, 0.34),
    rgba(153, 246, 228, 0.34),
    rgba(0, 242, 173, 0)
  );
}

.lynk-home-new > .lynk-home-block::after,
.lynk-home-new > .lynk-home-grid-2::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: min(300px, 52%);
  height: 11px;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 242, 173, 0.2) 0%,
    rgba(0, 242, 173, 0) 72%
  );
  pointer-events: none;
}

/* Keep hero clean (no separator above) */
.lynk-home-new > .lynk-home-hero + .lynk-home-block::before,
.lynk-home-new > .lynk-home-hero + .lynk-home-block::after {
  display: block;
}

.lynk-reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.lynk-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.lynk-home-hero {
  position: relative;
  min-height: 600px;
  height: 70vh;
  border-radius: 3rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  isolation: isolate;
}

.lynk-home-hero-media {
  position: absolute;
  inset: 0;
}

.lynk-home-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  mix-blend-mode: normal;
  filter: none;
}

.lynk-home-hero-split {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.45);
}

.lynk-home-hero-split-col {
  position: absolute;
  top: 0;
  height: 100%;
  width: 62%;
  overflow: hidden;
}

.lynk-home-hero-split-col img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
  z-index: 1;
  transform: scale(1.001);
}

.lynk-home-hero-split-col.is-left img {
  object-position: 52% 22%;
}

.lynk-home-hero-split-col.is-right img {
  object-position: 48% 22%;
}

.lynk-home-hero-split-col.is-left {
  left: 0;
  z-index: 2;
}

.lynk-home-hero-split-col.is-right {
  left: 38%;
  z-index: 1;
}

.lynk-home-hero-split-col.is-left img {
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 58%, rgba(0, 0, 0, 0.35) 82%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 58%, rgba(0, 0, 0, 0.35) 82%, transparent 100%);
}

.lynk-home-hero-split-col.is-right img {
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.4) 18%, #000 42%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.4) 18%, #000 42%, #000 100%);
}

.lynk-home-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #000 0%, rgba(0, 0, 0, 0.45) 45%, rgba(0, 0, 0, 0) 100%);
}

.lynk-home-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 78, 59, 0.2);
  mix-blend-mode: overlay;
}

.lynk-home-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 64rem;
  padding: 1rem;
}

/* ── Hero Text Overlay ──────────────────────────────────────── */
.lynk-home-hero-text-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: clamp(2rem, 6vh, 4rem);
  pointer-events: none;
}

.lynk-home-hero-text-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.28) 42%,
    transparent 70%
  );
  pointer-events: none;
}

.lynk-home-hero-text-inner {
  position: relative;
  text-align: center;
  pointer-events: auto;
}

.lynk-home-hero-label {
  font-size: clamp(0.72rem, 1.2vw, 0.88rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lynk-neon, #00F2AD);
  margin: 0 0 0.5rem;
  opacity: 0.92;
}

.lynk-home-hero-name {
  font-family: var(--lynk-font-display, 'Playfair Display', serif);
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--lynk-text, #f7e7ce);
  margin: 0 0 1.5rem;
  text-shadow: 0 2px 32px rgba(0,0,0,0.55);
}

.lynk-home-hero-cta {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.lynk-home-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.lynk-home-hero-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.lynk-home-hero-btn--primary {
  background: var(--lynk-neon, #00F2AD);
  color: #000;
  box-shadow: 0 0 18px rgba(0, 242, 173, 0.45);
}

.lynk-home-hero-btn--primary:hover {
  box-shadow: 0 0 28px rgba(0, 242, 173, 0.65);
  opacity: 0.92;
}

.lynk-home-hero-btn--ghost {
  background: rgba(255,255,255,0.08);
  color: var(--lynk-text, #f7e7ce);
  border: 1px solid rgba(247,231,206,0.3);
  backdrop-filter: blur(8px);
}

.lynk-home-hero-btn--ghost:hover {
  background: rgba(255,255,255,0.18);
}

@media (max-width: 640px) {
  .lynk-home-hero-name {
    font-size: clamp(2.2rem, 9vw, 3rem);
  }
  .lynk-home-hero-btn {
    padding: 0.55rem 1.2rem;
    font-size: 0.85rem;
  }
}

.lynk-home-badge {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 185, 129, 0.35);
  background: rgba(16, 185, 129, 0.2);
  color: #00F2AD;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  backdrop-filter: blur(8px);
}

.lynk-home-hero-content h1 {
  margin: 0 0 1rem;
  line-height: 0.95;
  font-size: clamp(3.4rem, 10vw, 7.5rem);
  letter-spacing: -0.04em;
}

.lynk-home-hero-content h1 span {
  background: linear-gradient(90deg, #00F2AD, #99f6e4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lynk-home-hero-content p {
  margin: 0 auto 2rem;
  max-width: 44rem;
  color: var(--text-soft);
  font-size: 1.15rem;
  font-weight: 300;
}

.lynk-home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  justify-content: center;
}

.lynk-btn {
  text-decoration: none;
  border-radius: 999px;
  padding: 0.9rem 1.75rem;
  font-weight: 500;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.lynk-btn:hover {
  transform: scale(1.05);
}

.lynk-btn-primary {
  background: #10b981;
  color: #051b14;
  font-weight: 600;
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
}

.lynk-btn-primary:hover {
  background: #00F2AD;
  box-shadow: 0 0 40px rgba(16, 185, 129, 0.6);
}

.lynk-btn-secondary {
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.09);
  color: var(--lynk-color-text);
  backdrop-filter: blur(10px);
}

.lynk-home-grid-2 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lynk-home-block-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.lynk-home-block-head-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.lynk-home-block-head h1 {
  margin: 0;
  font-size: var(--type-section-title) !important;
  letter-spacing: -0.03em;
  color: #f7e7ce;
  font-weight: 700;
  background: linear-gradient(to bottom, #f7e7ce 0%, rgba(247, 231, 206, 0.62) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lynk-home-block-head h1 span {
  background: linear-gradient(90deg, #34d399 0%, #99f6e4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lynk-home-block-head p {
  margin: 0;
  color: #F7E7CE;
  opacity: 0.9;
  font-size: var(--type-section-desc);
}

/* Nút "Xem tất cả" — pill giống mục navbar */
.lynk-home-block-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(247, 231, 206, 0.42);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #F7E7CE;
  opacity: 0.95;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  text-decoration: none;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.lynk-home-block-more:hover {
  color: #00F2AD;
  opacity: 1;
  background: rgba(0, 242, 173, 0.16);
  border-color: rgba(0, 242, 173, 0.58);
}

.lynk-home-glass-card {
  border-radius: 1.5rem;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background-color 0.45s ease, transform 0.35s ease;
  overflow: hidden;
}

.lynk-home-glass-card:hover {
  background: rgba(255, 255, 255, 0.09);
}

/* Biography / confession section */
.lynk-home-bio {
  padding: 0;
  position: relative;
  overflow: hidden;
  max-width: 72rem;
  margin: 0 auto;
}

/* Tighten spacing below confession section only */
.lynk-home-bio-section {
  margin-bottom: -1.8rem;
}

.lynk-home-bio-layout {
  display: flex;
  flex-direction: column;
}

.lynk-home-bio-image {
  position: relative;
  width: 100%;
  min-height: 340px;
}

.lynk-home-bio-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.lynk-home-bio:hover .lynk-home-bio-image img {
  transform: scale(1.05);
}

.lynk-home-bio-image-gradient,
.lynk-home-bio-image-overlay {
  position: absolute;
  inset: 0;
}

.lynk-home-bio-image-gradient {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
}

.lynk-home-bio-image-overlay {
  background: rgba(6, 78, 59, 0.2);
  mix-blend-mode: overlay;
}

.lynk-home-bio-content {
  position: relative;
  width: 100%;
  padding: 1.7rem;
}

.lynk-home-bio-inner {
  position: relative;
  z-index: 2;
}

.lynk-home-bio-glow {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.lynk-home-bio-glow.glow-right {
  top: 0;
  right: 0;
  width: 16rem;
  height: 16rem;
  background: rgba(0, 242, 173, 0.1);
  filter: blur(80px);
  transform: translate(50%, -50%);
}

.lynk-home-bio-glow.glow-bottom {
  bottom: 0;
  left: 50%;
  width: 12rem;
  height: 12rem;
  background: rgba(20, 184, 166, 0.1);
  filter: blur(60px);
  transform: translate(-50%, 50%);
}

.lynk-home-bio h1 {
  margin: 0 0 1.6rem;
  font-size: var(--type-section-title) !important;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #f7e7ce;
  font-weight: 700;
  background: linear-gradient(to bottom, #f7e7ce 0%, rgba(247, 231, 206, 0.62) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lynk-home-bio h1 span {
  font-family: inherit;
  background: linear-gradient(90deg, #34d399 0%, #99f6e4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lynk-home-bio h2 span {
  color: #00F2AD;
}

.lynk-home-bio-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(247, 231, 206, 0.8);
}

.lynk-home-bio-highlight {
  font-size: 1.15rem;
  font-weight: 600;
  color: #00F2AD;
  padding-top: 0.35rem;
}

.lynk-home-bio-sign {
  margin-top: 1.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.lynk-home-bio-avatar {
  width: 36px;
  height: 36px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  color: #00F2AD;
  overflow: hidden;
}

.lynk-home-bio-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.lynk-home-bio-avatar span {
  font-size: 1.5rem;
  font-style: italic;
  font-family: Georgia, serif;
}

.lynk-home-bio-name {
  color: #F7E7CE;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lynk-home-row,
.lynk-home-video,
.lynk-home-song-item,
.lynk-home-gallery-item {
  text-decoration: none;
  color: inherit;
}

.lynk-home-row {
  display: flex;
  gap: 1rem;
  padding: 1rem;
}

.lynk-home-featured-grid {
  --featured-height: 456px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

/* Featured songs: two columns slide-in when section enters viewport */
.lynk-featured-col-left,
.lynk-featured-col-right {
  opacity: 0;
  will-change: transform, opacity;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.9s ease;
}

.lynk-featured-col-left {
  transform: translateX(-56px);
}

.lynk-featured-col-right {
  transform: translateX(56px);
}

.lynk-home-block.is-visible .lynk-featured-col-left,
.lynk-home-block.is-visible .lynk-featured-col-right {
  opacity: 1;
  transform: translateX(0);
}

.lynk-home-block.is-visible .lynk-featured-col-right {
  transition-delay: 0.12s;
}

.lynk-home-featured-main {
  position: relative;
  height: var(--featured-height);
  padding: 1.8rem;
  display: flex;
  align-items: flex-end;
}

.lynk-home-featured-main-bg {
  position: absolute;
  inset: 0;
}

.lynk-home-featured-main-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  transition: transform 0.8s ease, opacity 0.5s ease;
}

.lynk-home-featured-main:hover .lynk-home-featured-main-bg img {
  transform: scale(1.08);
  opacity: 0.52;
}

.lynk-home-featured-main-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.08));
}

.lynk-home-featured-main-content {
  position: relative;
  z-index: 2;
  max-width: calc(100% - 72px);
}

.lynk-home-featured-play {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #00F2AD;
  color: #061a15;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.lynk-home-featured-play .lynk-home-play-icon {
  border-top-width: 7px;
  border-bottom-width: 7px;
  border-left-width: 11px;
  border-left-color: currentColor;
}

.lynk-home-featured-tag {
  display: inline-flex;
  padding: 0.26rem 0.68rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 242, 173, 0.4);
  background: rgba(0, 242, 173, 0.14);
  color: #00F2AD;
  font-size: var(--type-tag);
  font-weight: 600;
  letter-spacing: 0.07em;
  margin-bottom: 0.85rem;
}

.lynk-home-featured-main-content h3 {
  margin: 0 0 0.32rem;
  font-size: clamp(1.45rem, 2.8vw, 1.95rem);
  line-height: 1.05;
  color: #F7E7CE;
  font-weight: 700;
}

.lynk-home-featured-main-content p {
  margin: 0;
  color: #00F2AD;
}

.lynk-home-featured-side {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  height: var(--featured-height);
}

.lynk-home-featured-side-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  flex: 1;
  min-height: 0;
}

.lynk-home-featured-side-index {
  width: 28px;
  text-align: center;
  color: var(--lynk-neon, #00F2AD);
  font-size: 0.8rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.lynk-home-featured-side-thumb {
  width: 56px;
  height: 56px;
  border-radius: 0.75rem;
  overflow: hidden;
  flex-shrink: 0;
}

.lynk-home-featured-side-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.lynk-home-featured-side-item:hover .lynk-home-featured-side-thumb img {
  transform: scale(1.08);
}

/* Vinyl reveal on hover (left featured song) */
.lynk-home-featured-vinyl {
  position: absolute;
  right: -106px;
  top: 50%;
  transform: translateY(-50%) translateX(44px) rotate(0deg);
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: #070707;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 54px rgba(0, 0, 0, 0.75);
  z-index: 1;
  opacity: 0;
  transition: transform 1s ease, opacity 0.55s ease;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lynk-home-featured-main:hover .lynk-home-featured-vinyl {
  opacity: 1;
  transform: translateY(-50%) translateX(0) rotate(180deg);
}

.lynk-home-featured-vinyl-ring {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lynk-home-featured-vinyl-ring.ring-1 { inset: 12px; }
.lynk-home-featured-vinyl-ring.ring-2 { inset: 34px; }
.lynk-home-featured-vinyl-ring.ring-3 { inset: 56px; }
.lynk-home-featured-vinyl-ring.ring-4 { inset: 78px; }

.lynk-home-featured-vinyl-label {
  width: 122px;
  height: 122px;
  border-radius: 999px;
  background: linear-gradient(135deg, #00F2AD, #0b8e6e);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 22px rgba(0, 0, 0, 0.2);
}

.lynk-home-featured-vinyl-hole {
  width: 15px;
  height: 15px;
  border-radius: 999px;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lynk-home-song-thumb img,
.lynk-home-thumb img,
.lynk-home-gallery-item img,
.lynk-home-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.lynk-home-song-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lynk-home-song-item:hover .lynk-home-song-overlay {
  opacity: 1;
}

.lynk-home-song-item:hover img,
.lynk-home-gallery-item:hover img,
.lynk-home-video:hover .lynk-home-video-thumb img,
.lynk-home-row:hover .lynk-home-thumb img {
  transform: scale(1.06);
}

.lynk-home-play-icon {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #fff;
  margin-left: 2px;
}

.lynk-home-vision-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.lynk-home-moments {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.lynk-home-moments .lynk-home-block-head {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.lynk-home-vision-row {
  border-radius: 0;
  border: 0;
  background: transparent;
  overflow: hidden;
}

.lynk-home-vision-track {
  display: flex;
  width: max-content;
  gap: 1.05rem;
  padding: 0.35rem 0;
  animation: lynkVisionMarquee 34s linear infinite;
}

.lynk-home-vision-row.is-reverse .lynk-home-vision-track {
  animation-direction: reverse;
}

.lynk-home-vision-item {
  width: 280px;
  height: 210px;
  border-radius: 0.9rem;
  overflow: hidden;
  flex-shrink: 0;
  display: block;
}

.lynk-home-vision-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.lynk-home-vision-item:hover img {
  transform: scale(1.06);
}

@keyframes lynkVisionMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.lynk-home-thumb.is-square {
  width: 96px;
  height: 96px;
}

.lynk-home-meta {
  min-width: 0;
}

.lynk-home-meta h3 {
  margin: 0;
  font-size: var(--type-card-title);
  line-height: 1.3;
  color: #F7E7CE;
  font-weight: 700;
  transition: color 0.25s ease;
}

.lynk-home-song-item:hover .lynk-home-meta h3,
.lynk-home-row:hover .lynk-home-meta h3,
.lynk-home-video:hover .lynk-home-meta h3 {
  color: #00F2AD;
}

.lynk-home-meta p {
  margin: 0.35rem 0 0;
  color: #00F2AD;
  opacity: 1;
  font-size: var(--type-meta);
}

.lynk-home-date {
  color: #00F2AD !important;
  font-size: 0.8rem !important;
  margin-bottom: 0.35rem !important;
}

.lynk-home-video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.lynk-home-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.lynk-home-video:hover .lynk-home-video-overlay {
  background: rgba(0, 0, 0, 0.12);
}

.lynk-home-video-play {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.lynk-home-video:hover .lynk-home-video-play {
  transform: scale(1.1);
}

.lynk-home-video-meta {
  padding: 1.25rem;
}

.lynk-home-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.lynk-home-video-cinematic {
  position: relative;
  display: block;
  min-height: 400px;
}

.lynk-home-video-cinematic-media {
  position: absolute;
  inset: 0;
}

.lynk-home-video-cinematic-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.lynk-home-video-cinematic:hover .lynk-home-video-cinematic-media img {
  transform: scale(1.08);
}

.lynk-home-video-cinematic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.12));
  transition: opacity 0.3s ease;
}

.lynk-home-video-cinematic:hover .lynk-home-video-cinematic-overlay {
  opacity: 0.92;
}

.lynk-home-video-cinematic-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
  transform: scale(0.95);
}

.lynk-home-video-cinematic:hover .lynk-home-video-cinematic-play {
  opacity: 1;
  transform: scale(1);
}

.lynk-home-video-cinematic-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.4rem;
  z-index: 2;
}

.lynk-home-video-cinematic-content h3 {
  margin: 0;
  color: #F7E7CE;
  font-size: var(--type-card-title);
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.lynk-home-video-cinematic-content p {
  margin: 0.45rem 0 0;
  color: rgba(247, 231, 206, 0.85);
}

.lynk-home-video-cinematic .lynk-home-featured-tag {
  margin-bottom: 0.7rem;
}

.lynk-home-news-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lynk-home-news-art {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 1.2rem;
}

.lynk-home-news-featured,
.lynk-home-news-tile {
  position: relative;
  display: block;
  min-height: 260px;
}

.lynk-home-news-featured {
  min-height: 560px;
}

.lynk-home-news-featured-media,
.lynk-home-news-tile-media {
  position: absolute;
  inset: 0;
}

.lynk-home-news-featured-media img,
.lynk-home-news-tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}

.lynk-home-news-featured:hover .lynk-home-news-featured-media img,
.lynk-home-news-tile:hover .lynk-home-news-tile-media img {
  transform: scale(1.06);
}

.lynk-home-news-featured-overlay,
.lynk-home-news-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.15));
}

.lynk-home-news-featured-content,
.lynk-home-news-tile-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.3rem;
}

.lynk-home-news-featured-content {
  padding: 1.7rem;
}

.lynk-home-news-featured-content h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  line-height: 1.2;
  color: #F7E7CE;
  font-weight: 800;
}

.lynk-home-news-tile-content h3 {
  margin: 0;
  color: #F7E7CE;
  font-size: var(--type-card-title);
  line-height: 1.35;
  font-weight: 700;
}

.lynk-home-news-excerpt {
  margin: 0.65rem 0 0;
  color: rgba(247, 231, 206, 0.84);
  line-height: 1.65;
  font-size: 0.95rem;
}

.lynk-home-news-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.lynk-home-news-tax {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.65rem;
}

.lynk-home-news-tax span {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 242, 173, 0.42);
  background: rgba(0, 242, 173, 0.16);
  color: #99f6e4;
  font-size: var(--type-tag);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lynk-home-empty {
  margin: 0;
  padding: 1rem;
  color: var(--text-soft);
}

.lynk-home-footer-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.09);
}

.lynk-home-footer-card:hover {
  background: rgba(255, 255, 255, 0.09);
}

.lynk-home-footer {
  max-width: 80rem;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.lynk-home-social-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.lynk-home-social-simple {
  text-align: center;
  padding: 0.6rem 0;
}

.lynk-home-social-section {
  position: relative;
  padding-bottom: 1.1rem;
  margin-bottom: 2.2rem;
}

.lynk-home-social-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(560px, 86%);
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(0, 242, 173, 0),
    rgba(0, 242, 173, 0.5),
    rgba(153, 246, 228, 0.5),
    rgba(0, 242, 173, 0)
  );
}

.lynk-home-social-section::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: min(300px, 52%);
  height: 11px;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 242, 173, 0.2) 0%,
    rgba(0, 242, 173, 0) 72%
  );
  pointer-events: none;
}

.lynk-home-social-big-number {
  margin: 0;
  color: #F7E7CE;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.lynk-home-social-big-label {
  margin: 0.35rem 0 1rem;
  color: rgba(247, 231, 206, 0.92);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
}

.lynk-home-social-badge-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0 auto 0.65rem;
}

.lynk-home-social-badge-row.is-bottom {
  margin-bottom: 1.2rem;
}

.lynk-home-social-badge-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #F7E7CE;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  padding: 0.52rem 1rem;
  font-size: 0.92rem;
  transition: all 0.25s ease;
}

.lynk-home-social-badge-row a:hover {
  color: var(--lynk-color-text);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.lynk-home-social-likes-line {
  margin: 0;
  color: #F7E7CE;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
}

.lynk-home-social-likes-line span {
  margin-left: 0.4rem;
}

.lynk-home-social-totals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.lynk-home-social-total-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 242, 173, 0.38);
  background: rgba(0, 242, 173, 0.12);
  padding: 0.45rem 0.8rem;
}

.lynk-home-social-total-number {
  margin: 0;
  color: #00F2AD;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.lynk-home-social-total-label {
  margin: 0;
  color: rgba(247, 231, 206, 0.88);
  letter-spacing: 0.02em;
  text-transform: none;
  font-size: 0.8rem;
}

.lynk-home-social-card {
  min-height: 122px;
  padding: 0.9rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.4rem;
  position: relative;
  overflow: hidden;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  transition: all 0.25s ease;
}

.lynk-home-social-card:hover {
  border-color: rgba(0, 242, 173, 0.4);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

.lynk-home-social-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
}

.lynk-home-social-head h3 {
  margin: 0;
  color: #F7E7CE;
  font-size: 0.95rem;
  font-weight: 800;
}

.lynk-home-social-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #99f6e4;
  border: 1px solid rgba(0, 242, 173, 0.44);
  background: rgba(0, 242, 173, 0.12);
}

.lynk-home-social-meta {
  margin: 0;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  color: rgba(247, 231, 206, 0.72);
  font-size: 0.74rem;
}

.lynk-home-social-dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(247, 231, 206, 0.5);
}

.lynk-home-social-metric {
  margin: 0.2rem 0 0;
  color: #00F2AD;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.lynk-home-social-card::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 242, 173, 0.2) 0%, rgba(0, 242, 173, 0) 70%);
  pointer-events: none;
}

.lynk-home-footer-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.lynk-home-footer-top::after {
  display: none;
}

.lynk-home-footer-brand h3 {
  margin: 0;
  color: #00F2AD;
  font-size: 1.35rem;
  font-weight: 800;
}

.lynk-home-footer-brand p {
  margin: 0.5rem 0 0;
  color: rgba(247, 231, 206, 0.82);
  max-width: 460px;
}

.lynk-home-footer-social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}

.lynk-home-footer-social-icon,
.lynk-home-footer-policy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #F7E7CE;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.84rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: none;
}

.lynk-home-footer-social-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  padding: 0;
}

.lynk-home-footer-social-icon svg {
  width: 15px;
  height: 15px;
  display: block;
}

.lynk-home-footer-social-icon:hover,
.lynk-home-footer-policy:hover {
  color: #00F2AD;
  border-color: rgba(0, 242, 173, 0.45);
  background: rgba(0, 242, 173, 0.12);
}

.lynk-home-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
}

.lynk-home-footer-bottom p {
  margin: 0;
  color: rgba(247, 231, 206, 0.75);
  font-size: 0.9rem;
}

.lynk-home-footer-policy {
  white-space: nowrap;
}

.lynk-home-footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.lynk-home-footer-policy.is-booking {
  color: #061a15;
  background: #00F2AD;
  border-color: rgba(0, 242, 173, 0.55);
  font-weight: 700;
}

.lynk-home-footer-policy.is-booking:hover {
  color: #061a15;
  background: #00F2AD;
  border-color: rgba(0, 242, 173, 0.55);
}

@media (max-width: 992px) {
  .lynk-home-new {
    gap: 4rem;
  }

  .lynk-home-new > .lynk-home-block,
  .lynk-home-new > .lynk-home-grid-2 {
    padding-top: 1.8rem;
  }

  .lynk-home-grid-2 {
    grid-template-columns: 1fr;
  }

  .lynk-home-featured-grid {
    grid-template-columns: 1fr;
  }

  .lynk-home-video-grid {
    grid-template-columns: 1fr;
  }

  .lynk-home-news-art {
    grid-template-columns: 1fr;
  }

  .lynk-home-social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lynk-home-social-totals {
    width: 100%;
  }

  .lynk-home-social-likes-line {
    font-size: clamp(1.35rem, 3.4vw, 2rem);
  }

  .lynk-home-news-featured {
    min-height: 420px;
  }

  .lynk-home-news-tile {
    min-height: 240px;
  }

  .lynk-home-footer-top,
  .lynk-home-footer-bottom {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .lynk-home-footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 100%;
  }

  .lynk-home-footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }

  .lynk-home-footer-social-icons {
    justify-content: center;
  }

  .lynk-home-footer-meta {
    justify-content: center;
  }

  .lynk-home-featured-main {
    height: auto;
    min-height: 360px;
  }

  .lynk-home-featured-side {
    height: auto;
  }

  .lynk-home-featured-side-item {
    min-height: 72px;
  }

  .lynk-home-featured-vinyl {
    width: 250px;
    height: 250px;
    right: -82px;
  }

  .lynk-home-bio-content {
    padding: 1.8rem 1.25rem;
  }

  .lynk-featured-col-left,
  .lynk-featured-col-right {
    transform: translateY(22px);
  }

  .lynk-home-block.is-visible .lynk-featured-col-left,
  .lynk-home-block.is-visible .lynk-featured-col-right {
    transform: translateY(0);
  }

  .lynk-home-vision-item {
    width: 184px;
    height: 138px;
  }

  .lynk-home-moments .lynk-home-block-head {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 640px) {
  .lynk-home-new {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .lynk-home-footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .lynk-home-hero {
    min-height: 520px;
    border-radius: 2rem;
  }

  .lynk-home-bio h2 br {
    display: none;
  }

  .lynk-home-news-mosaic {
    grid-template-columns: 1fr;
  }

  /* Tin tức: một cột — tăng chiều cao tối thiểu để nội dung/ảnh thấy rõ hơn khi cuộn */
  .lynk-home-news-featured {
    min-height: min(72vh, 520px);
  }

  .lynk-home-news-tile {
    min-height: 260px;
  }

  .lynk-home-social-grid {
    grid-template-columns: 1fr;
  }

  .lynk-home-social-badge-row a {
    width: 100%;
  }

  /* Mobile: keep biography image in portrait frame */
  .lynk-home-bio-image {
    min-height: 0;
    aspect-ratio: 3 / 4;
  }

  .lynk-home-bio-image img {
    object-position: center top;
  }
}

@media (min-width: 768px) {
  .lynk-home-bio-layout {
    flex-direction: row;
  }

  .lynk-home-bio-image {
    width: 36%;
    min-height: 100%;
  }

  .lynk-home-bio-image-gradient {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
  }

  .lynk-home-bio-content {
    width: 64%;
    padding: 2.4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .lynk-home-bio-text {
    font-size: 1.05rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lynk-reveal,
  .lynk-reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── Footer Stats ─────────────────────────────────────────────── */
.lynk-home-footer-social-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.lynk-footer-stats {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  font-size: 12px;
  color: rgba(247, 231, 206, 0.5);
}
.lynk-footer-stats-total {
  margin-top: 6px;
  justify-content: flex-end;
}
.lynk-footer-stat {
  display: flex;
  align-items: center;
  gap: 5px;
}
.lynk-footer-stat-sep {
  color: rgba(247,231,206,0.25);
  font-size: 16px;
  line-height: 1;
}
.lynk-footer-stat-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(247,231,206,0.3);
  flex-shrink: 0;
}
.lynk-footer-stat-dot.is-online {
  background: #4ade80;
  box-shadow: 0 0 6px #4ade80;
  animation: lynk-dot-pulse 2s ease-in-out infinite;
  will-change: opacity;
  transform: translateZ(0);
}
@keyframes lynk-dot-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}
.lynk-footer-stat-icon {
  font-size: 12px;
  line-height: 1;
}
.lynk-footer-stat-value {
  font-weight: 600;
  color: rgba(247,231,206,0.85);
  font-variant-numeric: tabular-nums;
}
.lynk-footer-stat-label {
  font-weight: 400;
}
/* ─────────────────────────────────────────────────────────────── */


