    :root {
      --brand-red: #c40000;
      --brand-white: #ffffff;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      height: 100%;
      font-family: Arial, Helvetica, sans-serif;
    }

    body {
      background: url("nur-car-bg.jpg") no-repeat left bottom fixed #000000;
      background-size: cover;
      color: var(--brand-white);
    }

    .overlay {
      position: fixed;
      inset: 0;
      background: linear-gradient(
        rgba(0,0,0,0.35),
        rgba(0,0,0,0.45)
      );
      z-index: -1;
    }

    /* Logo + Slogan */
    .brand {
      position: absolute;
      top: 24px;
      left: 24px;
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .brand img {
      max-width: 200px;
      height: auto;
    }

    .slogan {
      font-size: 14px;
      letter-spacing: 0.5px;
      opacity: 0.85;
      white-space: nowrap;
    }

  

    /* Centered content */
    .page {
      min-height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 40px;
      padding: 40px 20px;
      text-align: center;
    }

    .buttons {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .button {
      padding: 14px 30px;
      border-radius: 8px;
      text-decoration: none;
      color: var(--brand-white);
      font-weight: 600;
      letter-spacing: 0.3px;
      background: transparent;
      border: 2px solid var(--brand-red);
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    .button:hover {
      background: var(--brand-red);
      transform: translateY(-3px);
      box-shadow: 0 10px 24px rgba(0,0,0,0.35);
    }

    /* Contact block */
    .contact {
      font-size: 14px;
      line-height: 1.7;
      opacity: 0.9;
    }

    .contact a {
      color: var(--brand-white);
      text-decoration: none;
    }

    .contact a:hover {
      text-decoration: underline;
    }

    /* Footer links */
    .footer {
      position: absolute;
      bottom: 20px;
      font-size: 13px;
      opacity: 0.8;
      left: 24px
    }

    .footer a {
      color: var(--brand-white);
      text-decoration: none;
    }

    .footer a:hover {
      text-decoration: underline;
    }

   
    .headline {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.decor {
  position: absolute;
  background: var(--brand-red);
  z-index: 1;
}

/* Top center square */
.decor-top-center {
  top: 40px;
  left: 50%;
  width: 15px;
  height: 15px;
  transform: translateX(-50%);
}

/* Top right line */
.decor-top-right-line {
  top: 20px;
  right: 24px;
  width: 120px;
  height: 4px;
}

/* Top right small square */
.decor-top-right-square {
  top: 40px;
  right: 34px;
  width: 10px;
  height: 10px;
}

/* Bottom left square near Impressum */
.decor-bottom-left {
  width: 15px;
  height: 15px;
  display: inline-block;
  position: relative;
  margin-right: 20px;
}

/* Gray dot grid – premium poster style */
.dot-grid {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width:520px;
  height: 500px;

  background-image:
    radial-gradient(
      circle,
      rgba(255,255,255,0.35) 1.3px,
      transparent 1.4px
    );

  background-size: 45px 45px;

  /* Diagonal fade mask */
  -webkit-mask-image: linear-gradient(
    135deg,
    rgba(0,0,0,1) 30%,
    rgba(0,0,0,0.5) 55%,
    rgba(0,0,0,0.15) 75%,
    rgba(0,0,0,0) 100%
  );
  mask-image: linear-gradient(
    135deg,
    rgba(0,0,0,1) 30%,
    rgba(0,0,0,0.5) 55%,
    rgba(0,0,0,0.15) 75%,
    rgba(0,0,0,0) 100%
  );

  opacity: 0;
  animation: dotsFadeIn 1.4s ease-out forwards;
  animation-delay: 0.6s;

  pointer-events: none;
}

/* Subtle appearance animation */
@keyframes dotsFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 0.85;
    transform: translateY(0);
  }
}


 @media (max-width: 600px) {
      .brand img {
        max-width: 160px;
      }
    .headline {
    font-size: 30px;
    }
    .decor-top-center {display: none;}

    }




    /* IMPRINT */ 
     .imprint body {
      margin: 0;
      padding: 40px 20px;
      background: #000;
    }


    .imprint .back {
      display: inline-block;
      margin-bottom: 30px;
      color: #c40000;
      text-decoration: none;
      font-weight: 600;
    }

    .imprint .back:hover {
      text-decoration: underline;
    }

    .imprint h1 {
      margin-bottom: 20px;
    }

    .imprint .content {
      max-width: 600px;
      line-height: 1.7;
      opacity: 0.9;
    }

  
.imprint body {
  padding-top: 140px;
}




 @media (max-width: 600px) {
      .brand img {
        max-width: 160px;
      }
    .headline {
    font-size: 30px;
    }
    .decor-top-center {display: none;}

    }

