* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: #0A1020;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

.nexxtcars-wrapper {
  min-height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px;
}

.nexxtcars-content {
  max-width: 700px;
}

.nexxtcars-logo {
  max-width: 320px;
  width: 100%;
  height: auto;
  margin-bottom: 40px;
}

.nexxtcars-headline {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  margin: 0 0 30px;
  line-height: 1.2;
}

.nexxtcars-text {
  font-size: clamp(1rem, 2vw, 1.3rem);
  line-height: 1.7;
  margin: 0;
}

.nexxtcars-text a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

.nexxtcars-text a:hover {
  text-decoration: underline;
}