/* Font Configuration */
@font-face {
  font-family: 'Neue Haas Grotesk';
  src: url('fonts/NeueHaasDisplayXXThin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'Neue Haas Grotesk';
  src: url('fonts/NeueHaasDisplayXThin.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'Neue Haas Grotesk';
  src: url('fonts/NeueHaasDisplayThin.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Neue Haas Grotesk';
  src: url('fonts/NeueHaasDisplayLight.ttf') format('truetype');
  font-weight: 350;
  font-style: normal;
}

@font-face {
  font-family: 'Neue Haas Grotesk';
  src: url('fonts/NeueHaasDisplayRoman.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

/* Variables */
:root {
  --bg-color: hsl(0, 0%, 98%); /* Barely off-white */
  --accent-color: hsl(28, 100%, 50%); /* Vibrant orange */
}

/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-radius: 0 !important;
}

body {
  font-family: 'Neue Haas Grotesk', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-color);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 40px;
}

.container {
  width: 100%;
  max-width: 800px; /* Centered block */
  text-align: left; /* Left-aligned text */
  animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.message {
  font-size: 5rem; /* Bigger */
  font-weight: 200; /* XThin */
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--accent-color);
  text-transform: lowercase;
  word-break: break-word;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjust */
@media (max-width: 768px) {
  .message {
    font-size: 3.5rem;
  }
  body {
    padding: 24px;
  }
}
