body {
    margin: 0;
    font-family: 'Courier New', monospace;
    background: url('https://www.transparenttextures.com/patterns/stardust.png') repeat, #0d0d1a;
    color: #ff4d4d;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100vh;
    padding: 2rem;
}

h1 {
    font-size: 3rem;
    text-shadow: 0 0 12px #ff4d4d, 0 0 20px #ff0000;
    margin-bottom: 0.5rem;
}

p.tagline {
    font-size: 1.2rem;
    color: #ff9999;
    margin-bottom: 2rem;
}

.toolbox {
    width: 100%;
    max-width: 600px;
    border: 2px dashed #ff4d4d;
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 15px #ff4d4d;
}

.toolbox h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #ff4d4d;
    padding-bottom: 0.5rem;
}

.tool {
    padding: 0.5rem 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dotted #444;
}

.tool:last-child {
    border-bottom: none;
}

.tool a {
    color: #ff4d4d;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.tool a:hover {
    color: #ffffff;
    text-shadow: 0 0 5px #ff4d4d;
}

.spaceship {
    width: 120px;
    height: auto;
    margin-bottom: 1rem;
}

footer {
    margin-top: auto;
    font-size: 0.8rem;
    color: #ff9999;
    margin-top: 4rem;
}
