@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&family=Orbitron:wght@400;700&display=swap');

:root {
    --primary-black: #000000;
    --secondary-grey: #333333;
    --light-grey: #666666;
    --off-white: #f5f5f5;
    --white: #ffffff;
    --border-grey: #cccccc;
    --text-primary: #000000;
    --text-secondary: #666666;
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'JetBrains Mono', monospace;
    background: var(--off-white);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

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

.header {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 0;
    border-bottom: 2px solid var(--border-grey);
}

.title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--light-grey);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.content {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.content h1 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: var(--primary-black);
    margin-bottom: 30px;
    text-align: center;
}

.content h2 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    color: var(--secondary-grey);
    margin: 30px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-grey);
}

.content h3 {
    font-size: 1.4rem;
    color: var(--secondary-grey);
    margin: 25px 0 15px 0;
}

.content p {
    margin-bottom: 20px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.content ul, .content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.content li {
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.highlight {
    background: var(--off-white);
    padding: 20px;
    border-left: 4px solid var(--secondary-grey);
    margin: 20px 0;
    font-style: italic;
}

.disclaimer {
    background: var(--light-grey);
    color: var(--primary-black) !important;
    padding: 20px;
    border-radius: 5px;
    margin: 30px 0;
    text-align: center;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.footer {
    text-align: center;
    padding: 30px 0;
    color: var(--light-grey);
    border-top: 1px solid var(--border-grey);
    margin-top: 50px;
}

.footer a {
    color: var(--secondary-grey);
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-black);
}

/* Navigation */
.nav {
    background: var(--white);
    border-bottom: 1px solid var(--border-grey);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h2 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: var(--primary-black);
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--secondary-grey);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 5px 10px;
    border-radius: 5px;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--primary-black);
    background: var(--off-white);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .title {
        font-size: 2.2rem;
    }

    .content {
        padding: 25px;
    }

    .nav-container {
        flex-direction: column;
        gap: 10px;
    }

    .nav-menu {
        gap: 15px;
    }
}

/* Hide Scrollbar */
::-webkit-scrollbar {
    display: none;
}

html {
    scrollbar-width: none;
}
