<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', Courier, monospace;
    background-color: #121212;
    color: #00ff00;
    line-height: 1.6;
}

h1, h2 {
    font-family: 'Courier New', Courier, monospace;
    color: #ff3300;
    text-align: center;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

a {
    color: #00ff00;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

a:hover {
    color: #ff3300;
    text-decoration: underline;
}

/* Header */
header {
    background-color: #222;
    padding: 20px;
    text-align: center;
    border-bottom: 2px solid #00ff00;
}

.description {
    font-size: 1.2em;
    font-style: italic;
}

/* Main content */
main {
    padding: 40px 20px;
}

.links {
    margin-bottom: 40px;
}

.links ul {
    list-style: none;
    text-align: center;
}

.links ul li {
    margin: 20px 0;
}

.message {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.2);
}

.message p {
    font-size: 1.3em;
    color: #ffcc00;
}

/* Footer */
footer {
    background-color: #222;
    color: #00ff00;
    text-align: center
    
.chat-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.chat-box {
    width: 400px;
    max-width: 90%;
    background-color: #1a1a1a;
    border: 1px solid #00ff00;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.chat-header {
    background-color: #111;
    padding: 10px;
    color: #00ff00;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

.chat-content {
    padding: 10px;
    height: 300px;
    overflow-y: auto;
    font-size: 0.95em;
}

.chat-input {
    display: flex;
    border-top: 1px solid #00ff00;
}

.chat-input input {
    flex: 1;
    padding: 10px;
    background-color: #111;
    color: #00ff00;
    border: none;
    outline: none;
}

.chat-input button {
    background-color: #00ff00;
    color: black;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.user-message, .bot-message {
    margin: 8px 0;
}

.user-message {
    text-align: right;
    color: #ffcc00;
}

.bot-message {
    text-align: left;
    color: #00ff00;
}

</pre></body></html>