:root {
  --bg-dark: #0d0d0d;
  --race-red: #a60303;
  --light-gray: #d9d9d9;
  --muted-brown: #734f52;
  --deep-red: #400606;
  --font-main: "Inter", system-ui, -apple-system, sans-serif;
  --glass-bg: rgba(13, 13, 13, 0.7);
  --glass-border: rgba(166, 3, 3, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-dark);
  color: var(--light-gray);
  font-family: var(--font-main);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

body {
  background-color: var(--bg-dark);
  color: var(--light-gray);
  font-family: var(--font-main);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.container {
  padding: 3rem;
  max-width: 850px;
  width: 90%;
  text-align: center;
  animation: fadeIn 1.2s ease-out;
}

header {
  margin-bottom: 3rem;
}

.logo-container {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.brand-logo {
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(166, 3, 3, 0.2));
}

.tagline {
  font-size: 1rem;
  color: var(--race-red);
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  opacity: 0.8;
}

.content {
  margin-bottom: 3rem;
}

.description {
  font-size: 1.8rem;
  line-height: 1.3;
  color: var(--light-gray);
  margin-bottom: 1rem;
  font-weight: 300;
}

.highlight {
  color: var(--race-red);
  font-weight: 900;
}

.sub-description {
  font-size: 1.1rem;
  color: var(--muted-brown);
  font-weight: 400;
}

.footer {
  font-size: 0.8rem;
  color: var(--muted-brown);
  margin-top: 2rem;
  letter-spacing: 1px;
  opacity: 0.6;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .brand-logo {
    max-width: 200px;
  }
  .description {
    font-size: 1.3rem;
  }
  .container {
    padding: 1.5rem;
  }
}
