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

body {
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
    line-height: 1.4;
    color: #00ff00;
    background-color: #0a0a0a;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 0 5px #00ff00;
}

.container {
    text-align: center;
    padding: 2rem;
    border: 2px solid #00ff00;
    background-color: #000000;
    box-shadow: 0 0 20px #00ff00, inset 0 0 20px rgba(0, 255, 0, 0.1);
    max-width: 600px;
    width: 90%;
}

header {
    margin-bottom: 3rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #00ff00;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-bottom: 2px solid #00ff00;
    padding-bottom: 1rem;
}

.links ul {
    list-style: none;
}

.links li {
    margin-bottom: 1.5rem;
}

.links a {
    color: #00ff00;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
    border: 1px solid #00ff00;
    background-color: transparent;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.links a::before {
    content: '>';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.links a:hover {
    background-color: #00ff00;
    color: #000000;
    transform: translateX(20px);
    box-shadow: 0 0 15px #00ff00;
}

.links a:hover::before {
    left: 10px;
    opacity: 1;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .links a {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }
    
    .container {
        width: 95%;
        padding: 1.5rem;
    }
}