/*
 * Venko Entertainment Hero
 * Lightweight, mobile-first and centered.
 */

:root {
  --vh-bg: #090927;
  --vh-bg-deep: #050512;
  --vh-gold: #d4af37;
  --vh-gold-soft: #f3d67a;
  --vh-text: #ffffff;
  --vh-muted: rgba(255,255,255,.74);
  --vh-line: rgba(212,175,55,.28);
}

.vh-hero,
.vh-hero * {
  box-sizing: border-box;
}

.vh-hero {
  position: relative;
  width: 100%;
  min-height: min(880px, 100svh);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 18%, rgba(73,56,139,.22), transparent 42%),
    linear-gradient(180deg, var(--vh-bg) 0%, var(--vh-bg-deep) 100%);
  color: var(--vh-text);
  padding: clamp(88px, 11vw, 140px) 20px 64px;
}

.vh-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: .17;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.vh-glow {
  position: absolute;
  width: 36rem;
  height: 36rem;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .18;
  z-index: -2;
  pointer-events: none;
}

.vh-glow--one {
  top: -17rem;
  left: -14rem;
  background: var(--vh-gold);
}

.vh-glow--two {
  right: -18rem;
  bottom: -19rem;
  background: #5a4dc7;
}

.vh-inner {
  width: min(100%, 980px);
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vh-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.vh-brand::after {
  content: "";
  width: 76px;
  height: 1px;
  margin-top: 15px;
  background: linear-gradient(90deg, transparent, var(--vh-gold), transparent);
}

.vh-brand__main {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 10vw, 7.5rem);
  font-weight: 500;
  letter-spacing: .12em;
  padding-left: .12em;
  color: var(--vh-gold-soft);
  text-shadow: 0 0 34px rgba(212,175,55,.12);
}

.vh-brand__sub {
  margin-top: 9px;
  font-size: clamp(.72rem, 2vw, 1rem);
  font-weight: 700;
  letter-spacing: .52em;
  padding-left: .52em;
  color: rgba(255,255,255,.82);
}

.vh-eyebrow {
  margin: 0 0 16px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--vh-gold-soft);
}

.vh-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 6.4vw, 5.2rem);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.vh-copy {
  max-width: 690px;
  margin: 24px auto 0;
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.7;
  color: var(--vh-muted);
  text-wrap: balance;
}

.vh-actions {
  width: 100%;
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.vh-btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: .94rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

.vh-btn:hover {
  transform: translateY(-2px);
}

.vh-btn--primary {
  background: linear-gradient(135deg, var(--vh-gold-soft), var(--vh-gold));
  color: #11111e !important;
  box-shadow: 0 12px 34px rgba(212,175,55,.16);
}

.vh-btn--secondary {
  border: 1px solid var(--vh-line);
  background: rgba(255,255,255,.035);
  color: #fff !important;
  backdrop-filter: blur(8px);
}

.vh-btn--secondary:hover {
  border-color: rgba(212,175,55,.65);
  background: rgba(212,175,55,.07);
}

.vh-tags {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 10px 18px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.62);
  font-size: .82rem;
}

.vh-tags span {
  position: relative;
}

.vh-tags span:not(:last-child)::after {
  content: "•";
  position: absolute;
  right: -12px;
  color: rgba(212,175,55,.65);
}

.vh-scroll {
  margin-top: 46px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.52) !important;
  text-decoration: none !important;
  font-size: .7rem;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.vh-scroll__arrow {
  font-size: 1.15rem;
  color: var(--vh-gold-soft);
  animation: vh-bob 1.8s ease-in-out infinite;
}

@keyframes vh-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@media (max-width: 700px) {
  .vh-hero {
    min-height: 100svh;
    padding: 86px 18px 44px;
  }

  .vh-brand {
    margin-bottom: 24px;
  }

  .vh-brand__main {
    font-size: clamp(3.2rem, 19vw, 5rem);
    letter-spacing: .08em;
    padding-left: .08em;
  }

  .vh-brand__sub {
    font-size: .65rem;
    letter-spacing: .38em;
    padding-left: .38em;
  }

  .vh-hero h1 {
    font-size: clamp(2.2rem, 10.6vw, 3.4rem);
    line-height: 1.04;
  }

  .vh-copy {
    margin-top: 20px;
    font-size: .98rem;
    line-height: 1.62;
  }

  .vh-actions {
    margin-top: 28px;
    flex-direction: column;
    align-items: stretch;
  }

  .vh-btn {
    width: 100%;
    min-height: 56px;
  }

  .vh-tags {
    max-width: 340px;
    margin-top: 24px;
    gap: 8px 16px;
    line-height: 1.6;
  }

  .vh-scroll {
    margin-top: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vh-btn,
  .vh-scroll__arrow {
    transition: none;
    animation: none;
  }
}


.vh-hero{min-height:60vh;padding:90px 20px;}
.vh-logo-placeholder{
width:140px;height:140px;border-radius:50%;
border:1px solid rgba(212,175,55,.25);
background:rgba(255,255,255,.02);
margin-bottom:28px;
}
@media(max-width:700px){
.vh-logo-placeholder{width:110px;height:110px;margin-bottom:22px;}
}

/* v1.0.3 — official Venko logo */
.vh-logo-placeholder{display:none !important;}

.vh-logo{
  display:block;
  width:min(44vw, 230px);
  height:auto;
  margin:0 auto 24px;
  border-radius:50%;
  object-fit:contain;
  box-shadow:
    0 0 0 1px rgba(212,175,55,.24),
    0 18px 48px rgba(0,0,0,.38),
    0 0 44px rgba(212,175,55,.10);
}

.vh-hero{
  min-height:58vh;
  padding:72px 20px;
}

@media(max-width:700px){
  .vh-hero{
    min-height:52vh;
    padding:58px 18px;
  }

  .vh-logo{
    width:min(52vw, 180px);
    margin-bottom:18px;
  }

  .vh-brand__main{
    font-size:clamp(2.9rem,17vw,4.4rem);
  }
}

/* v1.0.4 — exact user-supplied transparent PNG logo */
.vh-logo{
  background:transparent !important;
  border-radius:0 !important;
  box-shadow:none !important;
  object-fit:contain;
  width:min(48vw, 250px);
}

@media(max-width:700px){
  .vh-logo{
    width:min(56vw, 190px);
  }
}
