body {
    background: #050505;
    color: #00ff41;
    font-family: 'Courier New', monospace;
    text-align: center;
    padding: 50px 20px;
    margin: 0;
}

h1 {
    font-size: 3.5em;
    text-shadow: 0 0 15px #00ff41, 0 0 5px #00ff41;
    margin-bottom: 5px;
    font-weight: bold;
}

h2 {
    margin-top: 0;
    margin-bottom: 40px;
    color: #00cc33;
    font-size: 1.5em;
    font-weight: normal;
}

.description {
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-size: 1.15rem;
    line-height: 1.7;
    background: rgba(0, 0, 0, 0.8);
    padding: 30px;

    border: 2px solid #00ff41; 
    border-radius: 12px;
    text-align: left;

    box-shadow: 0 0 15px rgba(0, 255, 65, 0.3), inset 0 0 10px rgba(0, 255, 65, 0.2);
}

.description strong {
    color: #00ff41;
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.6);
}

.button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 30px 0;
    flex-wrap: wrap;
}

button, .download-button {
    background: transparent;
    color: #00ff41;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    border: 2px solid #00ff41;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    text-decoration: none;

    box-shadow: 0 0 10px rgba(0, 255, 65, 0.4);
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.6);
}

button:hover, .download-button:hover {
    background: #00ff41;
    color: #050505;
    box-shadow: 0 0 25px #00ff41;
    text-shadow: none;
}

a {
    color: inherit;
    text-decoration: none;
}
