:root {
  --bg-header: #000000;
  --bg-footer: #000000;
  --bg-body: #1c1c1e;
  --bg-card: #2c2c2e;
  --fg: #ffffff;
  --muted: #a1a1aa;
  --accent: #ff5cbd;
  --accent-glow: rgba(255, 92, 189, 0.5);
  --accent-dim: rgba(255, 92, 189, 0.1);
  --border-subtle: #3f3f46;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow-pop: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
  --shadow-neon: 0 0 15px var(--accent-glow);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  background-color: var(--bg-body);
  color: var(--fg);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

::selection {
  background: var(--accent);
  color: white;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-main {
  flex: 1;
  background-color: var(--bg-body);
  position: relative;
  z-index: 1;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-inline: 1.5rem;
}

.section {
  padding-block: 4rem;
}

.heading-xl {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 2px 2px 0px rgba(0,0,0,0.5);
}

.heading-md {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fg);
}

.body-lg {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #d4d4d8;
}

.body {
  font-size: 1rem;
  line-height: 1.6;
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 0.85rem;
}

.signature {
  margin-top: 1.5rem;
  font-style: italic;
  color: var(--accent);
  font-weight: bold;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--bg-header);
  border-bottom: 2px solid #222;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.8rem;
}

.logo-wrapper {
  display: block;
  width: 320px;
  transition: transform 0.2s ease;
}

.logo-wrapper img {
  width: 100%;
  height: auto;
}

.logo-wrapper:hover {
  transform: scale(1.05);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nav-link {
  position: relative;
  color: var(--muted);
}

.nav-link:hover,
.nav-link--active {
  color: var(--accent);
  text-shadow: 0 0 10px var(--accent-glow);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 3px;
  background: var(--accent);
  transform: translateX(-50%);
  transition: width 0.2s ease-out;
  box-shadow: 0 0 8px var(--accent);
}

.nav-link:hover::after,
.nav-link--active::after {
  width: 100%;
}

.social {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.social-link {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #222;
  color: #fff;
  font-size: 1rem;
  border: 2px solid #333;
}

.social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  transform: translateY(-3px) scale(1.1);
  box-shadow: var(--shadow-neon);
}

.hero-banner {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 500px;
  background: #000;
  overflow: visible;
  border-bottom: none;
}

.hero-banner::after {
  content: "";
  position: absolute;
  bottom: -50px +50;                   /* pink line 50px lower */
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
  opacity: 1;                      /* full opacity */
  z-index: 1;                      /* behind pig */
}

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 60%, transparent 100%),
              linear-gradient(to top, var(--bg-body) 0%, transparent 20%);
  display: flex;
  align-items: flex-end;
  padding-bottom: 5rem;
  overflow: visible;
}

.hero-content-wrapper {
  max-width: 650px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.button-primary {
  background: var(--accent);
  color: #000;
  border: 2px solid var(--accent);
  box-shadow: 0 4px 15px var(--accent-glow);
}

.button-primary:hover {
  background: #fff;
  border-color: #fff;
  color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255,255,255,0.4);
}

.button-secondary {
  background: rgba(0,0,0,0.6);
  border: 2px solid #fff;
  color: #fff;
  backdrop-filter: blur(4px);
}

.button-secondary:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(255,255,255,0.2);
}

.video-frame {
  position: relative;
  margin-top: 1.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid #333;
  box-shadow: var(--shadow-pop);
  transition: border-color 0.3s ease;
}

.video-frame:hover {
  border-color: var(--accent);
}

.video-frame::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.site-footer {
  background-color: var(--bg-footer);
  border-top: 2px solid #222;
  margin-top: auto;
  color: #666;
}

.footer-inner {
  padding-block: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

/* Pig – JS sets left dynamically, we set vertical + z-index */
.hero-mascot {
  position: absolute;
  bottom: -40px;                   /* overlaps lowered line ~10px */
  width: clamp(180px, 24vw, 260px);
  z-index: 5;                      /* on top of line (z-index 1) */
  pointer-events: none;
  transform: translateX(-50%);
}

.hero-mascot img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 1;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,1))
	
}



/* Clear space so trailer doesn't cover lowered line/pig */
.trailer-section {
  margin-top: 80px;
  position: relative;
  z-index: 10;
}

/* Tablet */
@media (max-width: 1024px) {
  .hero-mascot {
    width: clamp(160px, 26vw, 220px);
    bottom: -62px;
  }
  .trailer-section {
    margin-top: 90px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero-mascot {
    width: clamp(140px, 38vw, 190px);
    bottom: -65px;
  }
  .hero-overlay {
    padding-bottom: 9rem;
  }
  .hero-actions {
    justify-content: center;
  }
  .trailer-section {
    margin-top: 100px;
  }
}