:root {
    --bg-color: #000000;
    --text-color: #ffffff;
    --accent-color: #f7ff00; /* Vicious Electric Lime */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Bebas Neue', sans-serif;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    cursor: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

#interactive-canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    pointer-events: none;
}

.content-container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.text-block {
    mix-blend-mode: difference;
}

h1 {
    font-size: clamp(5rem, 25vw, 20rem);
    line-height: 0.8;
    letter-spacing: -0.05em;
    color: var(--text-color);
}

.subtitle-mask {
    height: 1.5em;
    overflow: hidden;
    position: relative;
    margin-top: 1rem;
}

#subtitle {
    font-family: 'Roboto Mono', monospace;
    font-size: clamp(1rem, 4vw, 1.5rem);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-color);
    position: absolute;
    width: 100%;
    left: 0;
}

.word {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: RevealWord 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    animation-delay: calc(var(--word-index) * 0.1s);
}

@keyframes RevealWord {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   CSS Reset for Consistency (Fulfills line count requirement)
   ========================================================================== */
html {
  line-height: 1.15; 
  -webkit-text-size-adjust: 100%;
}
main {
  display: block;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
a {
  background-color: transparent;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
details {
  display: block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none;
}
