  :root{
    --ink:#fff;     
    --soft:#ccc;
    --red:#960400;
  }
  *{box-sizing:border-box}
  html,body{height:100%; margin:0;}

  .bg{
    background-color: #2d2d2d;
  }
  .bg video {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }

  body {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    color: var(--ink);
    overflow: hidden;
  }

  .card{
    display: flex;
    flex-direction: row; /* domyślnie obok siebie */
    align-items: center;
    gap: 20px;
    max-width: 90%;
    width: 100%;
    margin-top: 25px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .title {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin: 0;
    letter-spacing: 0.02em;
    color: var(--red);
    white-space: nowrap; /* zawsze w jednej linii */
  }

  .credits {
    font-family: "Libre Baskerville", serif;
    font-size: clamp(0.85rem, 1.8vw, 1rem);
    line-height: 1.6;
  }

  .credits a {
    color: var(--red);
    text-decoration: none;
    font-size: clamp(0.85rem, 1.8vw, 1rem);
  }
  .credits a:hover{opacity:.75}

  footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 12px;
    font-family: "Libre Baskerville", serif;
    font-size: clamp(0.6rem, 1vw, 0.75rem);
    color: #888;
    letter-spacing: .12em;
  }

  /* MOBILE – rozbijamy na dwie linie */
  @media (max-width: 600px) {
    .card {
      flex-direction: column;
      gap: 10px;
    }
  }
