/* css/style.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #050505;
    color: #00ff88;
    font-family: Consolas, monospace;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container {
    text-align: center;
    padding: 40px;
    border: 1px solid #00ff88;
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 0 20px #00ff88;
    border-radius: 10px;
}

h1 {
    font-size: 60px;
    margin-bottom: 20px;
    text-shadow: 0 0 15px #00ff88;
    animation: glitch 1s infinite;
}

p {
    margin-bottom: 30px;
    color: #00cc66;
}

button {
    background: transparent;
    border: 1px solid #00ff88;
    color: #00ff88;
    padding: 12px 30px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
    font-family: Consolas, monospace;
}

button:hover {
    background: #00ff88;
    color: black;
    box-shadow: 0 0 20px #00ff88;
}

@keyframes glitch {
    0% {
        text-shadow: 0 0 5px #00ff88;
    }
    50% {
        text-shadow: -2px 0 red, 2px 0 blue;
    }
    100% {
        text-shadow: 0 0 5px #00ff88;
    }
}