/* --- Gaming/Tech Theme & Global Styles --- */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Roboto+Mono:wght@400;700&display=swap'); /* Added Roboto Mono for better code-like text */

:root {
    --primary-color: #00ffcc; /* Neon Teal */
    --primary-color-glow: rgba(0, 255, 204, 0.5); /* For glow effects, used by the navbar */
    --background-color: #121212;
    --surface-color: #1e1e1e;
    --text-color: #e0e0e0;
    --text-muted-color: #888;
    --font-primary: 'Orbitron', sans-serif; /* Techy font for headers */
    --font-secondary: 'Roboto Mono', monospace; /* For a techy feel */
}

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

body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: var(--font-secondary);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

main {
    padding-top: 100px;
    padding-bottom: 50px;
}

h1, h2, h3 {
    font-family: var(--font-primary);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #fff;
}

.button {
    display: inline-block;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.button:hover {
    background: var(--primary-color);
    color: var(--background-color);
}

/* --- Footer --- */
.footer {
    background-color: var(--surface-color);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--primary-color);
    margin-top: 2rem;
}

.footer-links a {
    margin: 0 15px;
    font-weight: 700;
}

.footer-disclaimer {
    margin-top: 1rem;
    color: var(--text-muted-color);
    font-size: 0.8rem;
}

@media(max-width: 768px) {
}
