body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    overflow: hidden;
    font-family: 'News Cycle', 'Arial', sans-serif;
    color: #feda4a;
}

/* Pure CSS Star background */
.stars {
    background-color: #000;
    background-image: 
      radial-gradient(white, rgba(255,255,255,.2) 2px, transparent 3px),
      radial-gradient(white, rgba(255,255,255,.15) 1px, transparent 2px),
      radial-gradient(white, rgba(255,255,255,.1) 2px, transparent 3px),
      radial-gradient(rgba(255,255,255,.4), rgba(255,255,255,.1) 2px, transparent 3px);
    background-size: 550px 550px, 350px 350px, 250px 250px, 150px 150px;
    background-position: 0 0, 40px 60px, 130px 270px, 70px 100px;
    position: absolute;
    top: 0; bottom: 0; left: 0; right: 0;
    z-index: -1;
}

/* Navigation Menu Overlay */
#nav-container {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 100;
}
#menu-btn {
    background: transparent;
    color: #feda4a;
    border: 1px solid #feda4a;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 16px;
    font-family: inherit;
    transition: background 0.3s;
}
#menu-btn:hover {
    background: rgba(254, 218, 74, 0.2);
}
#sidebar {
    background: rgba(0,0,0,0.85);
    border: 1px solid #feda4a;
    padding: 20px;
    margin-top: 10px;
    width: 250px;
    border-radius: 5px;
}
#sidebar.hidden {
    display: none;
}
#sidebar h2 {
    margin-top: 0;
    font-size: 20px;
    border-bottom: 1px solid #feda4a;
    padding-bottom: 5px;
}
#sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
#sidebar li {
    margin: 15px 0;
    cursor: pointer;
    text-decoration: underline;
    font-size: 18px;
    transition: color 0.2s;
}
#sidebar li:hover {
    color: #fff;
}

/* Intro text: A long time ago... */
.intro {
    display: none;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #4ee;
    font-size: 2em;
    opacity: 0;
}
.intro.run-anim {
    /* animation: intro 6s ease-out forwards; */
}

/* The Logo */
.logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
    font-family: 'Arial Black', sans-serif;
    font-size: 5em;
    text-align: center;
    line-height: 0.9em;
    letter-spacing: -2px;
    text-transform: uppercase;
    -webkit-text-stroke: 2px #feda4a;
    color: transparent;
}
.logo.run-anim {
    animation: logo 5s ease-out 53s forwards;
}

/* The Crawl Container */
.crawl-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
    height: 100vh;
    perspective: 400px;
    opacity: 1; /* Wrapper handles perspective, content handles moving up */
}

/* The Crawl Text */
.crawl-content {
    position: relative;
    top: 99999px;
    transform-origin: 50% 100%;
    width: 80%;
    max-width: 800px;
    font-size: 2.5em;
    font-weight: bold;
    text-align: justify;
    letter-spacing: 2px;
    line-height: 1.5em;
}
.crawl-content.run-anim {
    animation: crawl 53s linear 0s forwards;
}

.crawl-content h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.crawl-content h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2em;
    text-transform: uppercase;
}

/* Animations */
@keyframes intro {
    0% { opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; }
}

@keyframes logo {
    0% { transform: translate(-50%, -50%) scale(2.5); opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(0.1); opacity: 0; }
}

@keyframes crawl {
    0% {
        top: 100%;
        transform: rotateX(20deg) translateZ(0);
        opacity: 1;
    }
    85% {
        opacity: 1;
    }
    100% {
        top: -8000px;
        transform: rotateX(25deg) translateZ(-3500px);
        opacity: 0;
    }
}