:root {
  --bg: #080808;
  --panel: #111111;
  --panel-2: #171717;
  --text: #f5f5f2;
  --muted: #aaa79f;
  --gold: #d4a93c;
  --gold-light: #f2d278;
  --line: rgba(212,169,60,.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 88px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  background: linear-gradient(to bottom, rgba(0,0,0,.9), rgba(0,0,0,.35), transparent);
  transition: .3s ease;
}
.header.scrolled { background: rgba(6,6,6,.92); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.brand img { width: 110px; height: 72px; object-fit: contain; mix-blend-mode: screen; }
.nav { display: flex; gap: 28px; align-items: center; }
.nav a { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.nav a:hover { color: var(--gold-light); }

.menu-toggle { display: none; background: none; border: 0; padding: 10px; }
.menu-toggle span { display: block; width: 27px; height: 2px; background: #fff; margin: 5px; }

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 130px 6vw 90px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.98) 0%, rgba(0,0,0,.86) 38%, rgba(0,0,0,.15) 72%),
    linear-gradient(0deg, var(--bg), transparent 30%),
    url("assets/marshall-darius-together.jpeg") center 42% / cover no-repeat;
  transform: scale(1.02);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 76% 38%, rgba(212,169,60,.12), transparent 32%);
}
.hero-content { position: relative; z-index: 2; max-width: 760px; }
.eyebrow { color: var(--gold-light); text-transform: uppercase; letter-spacing: .17em; font-size: 12px; font-weight: 700; }
h1, h2, h3 { margin-top: 0; }
h1 {
  font-family: "Anton", sans-serif;
  font-size: clamp(58px, 7vw, 112px);
  line-height: .94;
  letter-spacing: .01em;
  margin-bottom: 28px;
}
h1 span { color: var(--gold); }
.lead { max-width: 600px; color: #d0cec8; font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 0 26px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .06em;
  font-size: 12px;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: .25s ease;
}
.btn-primary { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #080808; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 45px rgba(212,169,60,.28); }
.btn-ghost { color: var(--gold-light); background: rgba(0,0,0,.25); }
.btn-ghost:hover { background: var(--gold); color: #080808; }
.scroll-hint { position: absolute; z-index: 2; left: 50%; bottom: 28px; transform: translateX(-50%); font-size: 11px; color: #bab7b0; letter-spacing: .1em; text-transform: uppercase; }

.section { padding: 110px 6vw; }
.section-dark { background: #0d0d0d; }
.section-heading { max-width: 820px; margin-bottom: 56px; }
.section-heading h2, .demo-copy h2, .artist-banner h2 {
  font-family: "Anton", sans-serif;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1;
  letter-spacing: .02em;
  margin-bottom: 22px;
}
.section-heading > p:last-child, .demo-copy > p:last-child, .artist-banner-copy p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 17px;
}

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.profile-card { position: relative; height: 640px; overflow: hidden; background: var(--panel); }
.profile-card img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: saturate(.7) contrast(1.08); transition: .6s ease; }
.profile-card:hover img { transform: scale(1.035); filter: saturate(1); }
.profile-overlay { position: absolute; inset: auto 0 0; padding: 80px 34px 32px; background: linear-gradient(transparent, rgba(0,0,0,.92)); }
.profile-overlay p { color: var(--gold-light); text-transform: uppercase; font-size: 12px; letter-spacing: .12em; }
.profile-overlay h3 { font-family: "Anton"; font-size: 48px; margin: 0; }

.releases { background: radial-gradient(circle at 75% 10%, rgba(212,169,60,.08), transparent 38%), var(--bg); }
.youtube-card {
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #161616, #0c0c0c);
  min-height: 330px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 50px;
}
.youtube-card h3 { font-family: "Anton"; font-size: clamp(40px, 5vw, 72px); margin-bottom: 15px; }
.youtube-card p { color: var(--muted); }
.youtube-mark { font-size: 38px; color: var(--gold); }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 250px; padding: 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(145deg, rgba(255,255,255,.025), transparent); transition: .25s ease; }
.service-card:hover { background: rgba(212,169,60,.07); transform: translateY(-4px); }
.service-card span { color: var(--gold); font-weight: 800; }
.service-card h3 { font-size: 22px; margin-top: 48px; }
.service-card p { color: var(--muted); line-height: 1.7; }

.artists { padding-top: 0; }
.artist-banner { min-height: 680px; position: relative; overflow: hidden; }
.artist-banner img { width: 100%; height: 680px; object-fit: cover; object-position: center 46%; filter: contrast(1.05) saturate(.75); }
.artist-banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.9), transparent 70%), linear-gradient(0deg, rgba(0,0,0,.8), transparent 55%); }
.artist-banner-copy { position: absolute; z-index: 2; left: 6%; bottom: 10%; width: min(560px, 85%); }

.demo { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; background: #0c0c0c; }
.demo-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.demo-form label { color: #d8d5cf; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.demo-form input, .demo-form textarea {
  width: 100%; margin-top: 9px; background: #151515; border: 1px solid #2b2b2b; color: #fff; padding: 16px; font: inherit; outline: none;
}
.demo-form input:focus, .demo-form textarea:focus { border-color: var(--gold); }
.full { grid-column: 1 / -1; }

.footer { padding: 70px 6vw 30px; display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 50px; border-top: 1px solid var(--line); background: #060606; }
.footer img { width: 170px; mix-blend-mode: screen; }
.footer a, .footer p { color: var(--muted); display: block; margin: 8px 0; }
.footer a:hover { color: var(--gold-light); }
.copyright { grid-column: 1/-1; border-top: 1px solid #202020; padding-top: 24px; font-size: 12px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .header { height: 74px; padding: 0 20px; }
  .brand img { width: 86px; height: 58px; }
  .menu-toggle { display: block; z-index: 3; }
  .nav {
    position: fixed; inset: 0; background: rgba(6,6,6,.98); display: flex; flex-direction: column;
    justify-content: center; gap: 28px; transform: translateX(100%); transition: .35s ease;
  }
  .nav.open { transform: translateX(0); }
  .nav a { font-size: 18px; }
  .hero { min-height: 920px; align-items: flex-end; padding: 120px 22px 90px; }
  .hero-bg {
    background:
      linear-gradient(0deg, rgba(0,0,0,1) 2%, rgba(0,0,0,.76) 45%, rgba(0,0,0,.15) 78%),
      url("assets/marshall-darius-together.jpeg") 51% top / auto 62% no-repeat,
      #050505;
  }
  h1 { font-size: clamp(52px, 15vw, 76px); }
  .lead { font-size: 15px; }
  .scroll-hint { display: none; }
  .section { padding: 78px 22px; }
  .about-grid { grid-template-columns: 1fr; }
  .profile-card { height: 540px; }
  .youtube-card { flex-direction: column; align-items: flex-start; padding: 30px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .artist-banner, .artist-banner img { height: 600px; }
  .artist-banner img { object-position: 50% 30%; }
  .demo { grid-template-columns: 1fr; gap: 42px; }
  .footer { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .section-heading h2, .demo-copy h2, .artist-banner h2 { font-size: 45px; }
  .service-grid { grid-template-columns: 1fr; }
  .demo-form { grid-template-columns: 1fr; }
  .full { grid-column: auto; }
  .profile-card { height: 480px; }
  .artist-banner, .artist-banner img { height: 520px; }
  .artist-banner-copy { left: 24px; bottom: 34px; }
}


/* Videoklipek */
.featured-video {
  display: grid;
  grid-template-columns: 1.55fr .8fr;
  gap: 34px;
  align-items: stretch;
  margin-bottom: 34px;
}
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #050505;
  border: 1px solid var(--line);
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.featured-video-copy,
.video-card-copy,
.channel-cta {
  background: linear-gradient(145deg, #171717, #0d0d0d);
  border: 1px solid var(--line);
}
.featured-video-copy {
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-video-copy h3,
.channel-cta h3 {
  font-family: "Anton", sans-serif;
  font-size: clamp(34px, 4vw, 60px);
  margin-bottom: 18px;
}
.featured-video-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 28px;
}
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.video-card {
  background: var(--panel);
  border: 1px solid var(--line);
}
.video-card-copy {
  border: 0;
  border-top: 1px solid var(--line);
  padding: 24px;
}
.video-card-copy h3 {
  font-size: 24px;
  margin-bottom: 12px;
}
.video-card-copy a {
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 700;
}
.channel-cta {
  margin-top: 34px;
  padding: 30px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.channel-cta h3 {
  font-size: 36px;
  margin: 0;
}

/* Előadók */
.artists {
  background:
    radial-gradient(circle at 20% 10%, rgba(212,169,60,.08), transparent 32%),
    #090909;
}
.artist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.artist-card {
  min-height: 360px;
  padding: 30px;
  border: 1px solid var(--line);
  background: linear-gradient(155deg, #191919, #0c0c0c);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: .3s ease;
}
.artist-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
}
.artist-initial {
  font-family: "Anton", sans-serif;
  font-size: 132px;
  line-height: 1;
  color: rgba(212,169,60,.19);
}
.artist-card h3,
.artist-card-overlay h3 {
  font-family: "Anton", sans-serif;
  font-size: 38px;
  margin: 0;
}
.artist-card-photo {
  padding: 0;
  position: relative;
}
.artist-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(.72) contrast(1.08);
}
.artist-card-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 80px 26px 26px;
  background: linear-gradient(transparent, rgba(0,0,0,.95));
}

@media (max-width: 1000px) {
  .featured-video {
    grid-template-columns: 1fr;
  }
  .artist-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 650px) {
  .video-grid,
  .artist-grid {
    grid-template-columns: 1fr;
  }
  .featured-video-copy {
    padding: 28px;
  }
  .channel-cta {
    align-items: flex-start;
    flex-direction: column;
  }
  .artist-card {
    min-height: 300px;
  }
}


/* V3 – valódi előadói képek és közösségi linkek */
.artist-card-photo {
  min-height: 460px;
}
.artist-card-photo img {
  transition: transform .65s ease, filter .65s ease;
}
.artist-card-photo:hover img {
  transform: scale(1.045);
  filter: saturate(1) contrast(1.05);
}
.artist-social {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.artist-social:hover {
  color: #fff;
}

/* YouTube-poszterek – helyi fájlmegnyitásnál is hibamentes */
.video-poster {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-color: #0a0a0a;
  border: 1px solid var(--line);
}
.video-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(0,0,0,.78), transparent 58%),
    linear-gradient(90deg, rgba(0,0,0,.28), transparent);
  transition: .3s ease;
}
.video-poster:hover::before {
  background: rgba(0,0,0,.25);
}
.video-poster:hover {
  transform: translateY(-3px);
}
.play-button {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 82px;
  height: 82px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding-left: 5px;
  color: #080808;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-size: 28px;
  box-shadow: 0 18px 50px rgba(0,0,0,.42);
  transition: .25s ease;
}
.video-poster:hover .play-button {
  transform: translate(-50%, -50%) scale(1.08);
}
.play-button.small {
  width: 62px;
  height: 62px;
  font-size: 20px;
}
.watch-label {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 24px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.featured-poster {
  min-height: 100%;
}
@media (max-width: 650px) {
  .artist-card-photo {
    min-height: 420px;
  }
}


/* V4 – betöltő animáció és valódi videós hero */
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(212,169,60,.10), transparent 35%),
    #050505;
  transition: opacity .75s ease, visibility .75s ease;
}
.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.loader-logo-wrap {
  width: min(360px, 74vw);
  text-align: center;
}
.loader-logo {
  width: 100%;
  max-height: 210px;
  object-fit: contain;
  mix-blend-mode: screen;
  opacity: 0;
  transform: scale(.78);
  filter: drop-shadow(0 0 0 rgba(212,169,60,0));
  animation: logoReveal 1.55s cubic-bezier(.2,.8,.2,1) forwards;
}
.loader-line {
  height: 1px;
  width: 0;
  margin: 18px auto 13px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  animation: lineReveal 1.1s .55s ease forwards;
}
.loader-logo-wrap p {
  margin: 0;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .26em;
  opacity: 0;
  animation: textReveal .75s 1s ease forwards;
}
@keyframes logoReveal {
  0% { opacity: 0; transform: scale(.78); filter: blur(8px) drop-shadow(0 0 0 rgba(212,169,60,0)); }
  60% { opacity: 1; transform: scale(1.03); filter: blur(0) drop-shadow(0 0 28px rgba(212,169,60,.27)); }
  100% { opacity: 1; transform: scale(1); filter: blur(0) drop-shadow(0 0 12px rgba(212,169,60,.12)); }
}
@keyframes lineReveal { to { width: 100%; } }
@keyframes textReveal { to { opacity: 1; } }

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #050505;
  transform: none;
}
.hero-video {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%) scale(1.025);
  filter: saturate(.68) contrast(1.08) brightness(.72);
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.97) 0%, rgba(0,0,0,.80) 38%, rgba(0,0,0,.20) 74%),
    linear-gradient(0deg, var(--bg) 0%, transparent 34%),
    radial-gradient(circle at 76% 38%, rgba(212,169,60,.14), transparent 34%);
}
.hero-logo-animated {
  width: clamp(150px, 18vw, 245px);
  max-height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 18px rgba(212,169,60,.13));
  animation: heroLogoFloat 5s ease-in-out infinite;
}
@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0); opacity: .95; }
  50% { transform: translateY(-7px); opacity: 1; }
}

@media (max-width: 900px) {
  .hero-bg {
    background: #050505;
  }
  .hero-video {
    width: auto;
    height: 100%;
    min-width: 100%;
    object-position: center;
  }
  .hero-video-overlay {
    background:
      linear-gradient(0deg, rgba(0,0,0,1) 2%, rgba(0,0,0,.68) 50%, rgba(0,0,0,.20) 82%),
      radial-gradient(circle at 50% 20%, rgba(212,169,60,.12), transparent 34%);
  }
  .hero-logo-animated {
    width: 145px;
    margin-bottom: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-loader { display: none; }
  .loader-logo, .loader-line, .loader-logo-wrap p, .hero-logo-animated { animation: none; }
  .hero-video { display: none; }
  .hero-bg {
    background:
      linear-gradient(0deg, rgba(0,0,0,1), rgba(0,0,0,.25)),
      url("assets/marshall-darius-together.jpeg") center/cover no-repeat;
  }
}


/* V5 – új Marshall & Darius logó */
.brand img {
  width: 92px;
  height: 72px;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 12px rgba(212,169,60,.16));
}
.loader-logo {
  max-height: 260px;
  object-fit: contain;
  mix-blend-mode: screen;
}
.hero-logo-animated {
  width: clamp(165px, 19vw, 270px);
  max-height: 200px;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 22px rgba(212,169,60,.2));
}
.footer img {
  width: 190px;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 14px rgba(212,169,60,.12));
}
@media (max-width: 900px) {
  .brand img {
    width: 72px;
    height: 58px;
  }
  .hero-logo-animated {
    width: 165px;
    max-height: 150px;
  }
}


/* V6 FIXED – fő videoklip háttérként, kattintás után hanggal */
.hero-youtube-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 177.7778vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%) scale(1.08);
  opacity: 0;
  transition: opacity .8s ease;
  pointer-events: none;
}
.hero-youtube-wrap.active { opacity: 1; }
.hero-youtube-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.hero-video-fallback {
  position: absolute;
  inset: 0;
  background:
    url("https://img.youtube.com/vi/XGqm79SzgKM/maxresdefault.jpg")
    center / cover no-repeat;
  filter: saturate(.75) contrast(1.08) brightness(.68);
  transition: opacity .8s ease;
}
.hero-video-fallback.hidden { opacity: 0; }

.enter-with-sound {
  display: block;
  margin: 28px auto 0;
  min-width: 240px;
  height: 56px;
  border: 1px solid var(--gold-light);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #080808;
  font: 800 12px/1 "Inter", sans-serif;
  letter-spacing: .1em;
  cursor: pointer;
  transition: .25s ease;
}
.enter-with-sound:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 45px rgba(212,169,60,.3);
}
.enter-muted {
  display: block;
  margin: 14px auto 0;
  padding: 8px 12px;
  border: 0;
  background: transparent;
  color: #aaa79f;
  font: 600 11px/1 "Inter", sans-serif;
  cursor: pointer;
}
.enter-muted:hover { color: #fff; }

.sound-control {
  position: absolute;
  z-index: 5;
  right: 5vw;
  bottom: 27px;
  display: none;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border: 1px solid rgba(212,169,60,.48);
  background: rgba(0,0,0,.55);
  color: #fff;
  backdrop-filter: blur(10px);
  font: 700 11px/1 "Inter", sans-serif;
  text-transform: uppercase;
  cursor: pointer;
}
.sound-control.visible { display: inline-flex; }

@media (max-width: 900px) {
  .hero-youtube-wrap {
    width: 177.7778vh;
    height: 100vh;
    min-width: 177.7778vh;
    min-height: 100vh;
  }
  .sound-control {
    right: 22px;
    bottom: 24px;
  }
}


/* V7 – Darius remixei */
.remix-section {
  background:
    radial-gradient(circle at 82% 8%, rgba(212,169,60,.10), transparent 34%),
    #090909;
}
.remix-featured {
  display: grid;
  grid-template-columns: 1.55fr .8fr;
  gap: 28px;
  margin-bottom: 28px;
}
.remix-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #050505;
}
.remix-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.remix-featured-copy {
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #181818, #0b0b0b);
}
.remix-featured-copy h3 {
  margin-bottom: 18px;
  font-family: "Anton", sans-serif;
  font-size: clamp(40px, 5vw, 72px);
}
.remix-featured-copy p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--muted);
  line-height: 1.75;
}
.remix-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.remix-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  transition: transform .28s ease, box-shadow .28s ease;
}
.remix-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 50px rgba(0,0,0,.34);
}
.remix-card-copy {
  padding: 22px 24px;
  border-top: 1px solid var(--line);
}
.remix-card-copy h3 {
  margin: 0;
  font-size: 23px;
}
.remix-card-wide {
  grid-column: 1 / -1;
}
.remix-card-wide .remix-video-frame {
  aspect-ratio: 21 / 9;
}

@media (max-width: 950px) {
  .remix-featured {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 680px) {
  .remix-grid {
    grid-template-columns: 1fr;
  }
  .remix-card-wide {
    grid-column: auto;
  }
  .remix-card-wide .remix-video-frame {
    aspect-ratio: 16 / 9;
  }
  .remix-featured-copy {
    padding: 28px;
  }
}


/* V8 – a fő videoklip valódi teljes képernyős háttér */
.hero-bg {
  position: absolute !important;
  inset: 0 !important;
  overflow: hidden !important;
  transform: none !important;
  background: #050505 !important;
}

.hero-youtube-wrap {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  transform: none !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

.hero-youtube-wrap iframe {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: max(100vw, 177.7778vh) !important;
  height: max(56.25vw, 100vh) !important;
  min-width: 177.7778vh !important;
  min-height: 100vh !important;
  transform: translate(-50%, -50%) scale(1.16) !important;
  border: 0 !important;
  pointer-events: none !important;
}

.hero-video-overlay {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
}

.hero-content {
  position: relative !important;
  z-index: 3 !important;
}

.sound-control,
.scroll-hint {
  z-index: 4 !important;
}

/* Hosszabb remixcímek szebb tördelése */
.remix-card-copy h3 {
  line-height: 1.28;
  font-size: clamp(17px, 1.45vw, 23px);
}

.remix-featured-copy h3 {
  line-height: 1.04;
  font-size: clamp(34px, 4.2vw, 64px);
}

@media (max-width: 900px) {
  .hero-youtube-wrap iframe {
    width: max(100vw, 177.7778vh) !important;
    height: max(56.25vw, 100vh) !important;
    transform: translate(-50%, -50%) scale(1.22) !important;
  }
}


/* V9 – saját MP4 fő videoklip, teljes képernyő, hangos ENTER */
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(212,169,60,.12), transparent 36%),
    #040404;
  transition: opacity .8s ease, visibility .8s ease;
}
.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.enter-site {
  display: block;
  min-width: 220px;
  height: 58px;
  margin: 30px auto 0;
  border: 1px solid var(--gold-light);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #080808;
  font: 800 13px/1 "Inter", sans-serif;
  letter-spacing: .18em;
  cursor: pointer;
  transition: .25s ease;
}
.enter-site:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 50px rgba(212,169,60,.3);
}
.enter-note {
  display: block;
  margin-top: 14px;
  color: #aaa79f;
  font-size: 11px;
  letter-spacing: .05em;
}
.hero-bg {
  position: absolute !important;
  inset: 0 !important;
  overflow: hidden !important;
  background: #050505 !important;
  transform: none !important;
}
.hero-main-video {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%) scale(1.03);
  filter: saturate(.76) contrast(1.08) brightness(.68);
}
.hero-video-overlay {
  position: absolute !important;
  inset: 0 !important;
  background:
    linear-gradient(90deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.78) 38%, rgba(0,0,0,.18) 76%),
    linear-gradient(0deg, var(--bg) 0%, transparent 34%),
    radial-gradient(circle at 76% 38%, rgba(212,169,60,.14), transparent 34%) !important;
}
.hero-content {
  position: relative !important;
  z-index: 3 !important;
}
.sound-control {
  position: absolute;
  z-index: 5;
  right: 5vw;
  bottom: 27px;
  display: none;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border: 1px solid rgba(212,169,60,.48);
  background: rgba(0,0,0,.55);
  color: #fff;
  backdrop-filter: blur(10px);
  font: 700 11px/1 "Inter", sans-serif;
  text-transform: uppercase;
  cursor: pointer;
}
.sound-control.visible { display: inline-flex; }
@media (max-width: 900px) {
  .hero-main-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .sound-control {
    right: 22px;
    bottom: 24px;
  }
}
