body {
    margin: 0;
    padding: 0;
    font-family: "Courier New", monospace;
    background: url("background.png") no-repeat center center fixed;
    background-size: cover;
    color: #00ff99;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background-color: rgba(0, 0, 0, 0.85);
    border: 2px solid #00ff99;
    border-radius: 1rem;
    padding: 2rem;
    max-width: 460px;
    width: 90%;
    box-shadow: 0 0 30px rgba(0, 255, 153, 0.2);
}

h1 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #00ff99;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

textarea {
    min-height: 100px;
    background: #111;
    color: #00ff99;
    padding: 0.8rem;
    border: none;
    border-radius: 0.5rem;
    resize: vertical;
}

button {
    padding: 0.8rem;
    background: #00ff99;
    color: #000;
    font-weight: bold;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background: #00cc77;
}

.icon-wrapper {
    text-align: center;
    margin-bottom: 1rem;
}

.app-icon {
    width: 100px;
    height: 100px;
    border-radius: 16px;
}

.info-links {
    text-align: center;
    margin-bottom: 1rem;
}

.info-links a {
    color: #00ff99;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.info-links a:hover {
    color: #ffffff;
}

.matrix-flux {
    text-align: center;
    margin-top: 2rem;
    font-style: italic;
    animation: flux 2s infinite alternate;
}

@keyframes flux {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 1;
    }
}

.hidden {
    display: none;
}
