@media (max-width: 600px) {
      .btn {
        pointer-events: none;
        cursor: not-allowed;
        opacity: 0.7;
      }
    .btn svg {
      width: 24px !important;
      height: 24px !important;
    }
  .hero {
    padding-top: 0px;
  }
  .hero__rive {
    height: 120px;
    max-height: 120px;
    margin-bottom: 32px;
    margin-top: 48px;
  }
  .content {
    padding-top: 0px;
  }
  .content {
    padding: 16px 8px 18px;
    text-align: center;
  }
  .title {
    font-size: clamp(28px, 8vw, 44px);
    margin-top: 0px;
    margin-bottom: 4px;
  }
  .subtitle {
    font-size: clamp(16px, 4vw, 22px);
    margin-bottom: 36px;
  }
  .btn {
    font-size: clamp(0.9rem, 4vw, 1.2rem);
    padding: clamp(8px, 2vw, 12px) clamp(12px, 5vw, 18px);
    border-radius: clamp(6px, 2vw, 10px);
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    box-sizing: border-box;
    text-align: left;
  }
  .footer {
    padding: 0 8px 16px;
    font-size: 12px;
  }
}
/* ====== KING FONT ======
   Zet je fontbestand in: /fonts/King.ttf (of .otf/.woff2)
   en pas de url aan. */
@font-face {
  font-family: "King";
  src: url("assets/KIN.TTF") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root{
  --bg: #000000;
  --text: #ffffff;
  --muted: rgba(244,244,246,0.75);
  --btn-bg: #ff0000;
  --btn-text: #ffffff;
  --max: 920px;
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main.content {
  flex: 1;
}

body{
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* HERO: full width, responsive */
.hero{
  width: 100%;
}

.hero__rive{
  width: 100%;
  height: clamp(320px, 65vh, 800px);
  overflow: hidden;
  background: #000; /* fallback achter canvas */
}

.hero__rive canvas{
  display: block;
  width: 100%;
  height: 100%;
}

/* Content center */
.content{
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px 20px 28px;
  text-align: center;
}

.title{
    margin-top: -36px;
  margin-bottom: 0px;
  font-family: "King", system-ui, sans-serif;
  font-size: clamp(44px, 6vw, 76px);
  letter-spacing: 0.02em;
  line-height: 1.05;
}

.subtitle{
  margin: 10px 0 22px;
  font-family: "King", system-ui, sans-serif;
  font-size: clamp(20px, 2.4vw, 30px);
  letter-spacing: 0.02em;
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 36px;
}

/* Download button */
.btn{
    /* Removed fixed width/height for better scaling */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(10px, 2vw, 18px) clamp(18px, 5vw, 32px);
  border-radius: clamp(8px, 1vw, 14px);
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.6rem);
  font-family: "King", system-ui, sans-serif;
  background: var(--btn-bg);
  color: var(--btn-text);
  border: 3px solid #ffffff; /* stroke */
  transition: transform 120ms ease, opacity 120ms ease, background-color 300ms ease;
}

.btn:hover{
  --btn-bg: #9c0000;
}

/* Footer credits */
 .footer {
   max-width: var(--max);
   margin: 0 auto;
   padding: 0 20px 28px;
   margin-top: 16px; /* Increased space above footer */
 }


.credits{
  margin: 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(244,244,246,0.65);
  text-align: center;
}

.credit-name{
  color: rgba(244,244,246,0.9);
}
