body {
    font-family: 'Courier New', monospace;
    background-color: #010101;
    color: white;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Takes up full screen height */
}

#landing-container {
    text-align: center;
    width: 100%;
    max-width: 600px;
    padding: 20px;
}

h1 {
    color: #FFFFFF;
    letter-spacing: 4px;
    margin-bottom: 50px;
    font-size: 2.5em;
    text-shadow: 0 0 10px rgba(67, 185, 11, 0.3);
}

/* Vertical Stack Container */
.tool-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

/* Large Navigation Buttons */
.nav-button {
    display: block;
    padding: 20px;
    background-color: #1a1a1a;
    border: 2px solid #333;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background-color: #222;
    border-color: #FFFFFF;
    color: #fff;
    box-shadow: 0 0 15px rgba(67, 185, 11, 0.4);
    transform: translateY(-3px); /* Subtle "lift" effect */
}

aside.context {
    color: #444;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ct_info, .other_info, .other_info2 {
    position: absolute;
    right: 0px;
    padding: 10px;
}

.ct_info { top: 0px; }
