/* ============================================
   adamcoding.com — Dark Mode Only. No Exceptions.
   ============================================ */

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: #16161e;
    --bg-card-hover: #1c1c28;
    --bg-terminal: #0d0d14;
    --border: #2a2a3a;
    --border-light: #1e1e2e;

    --text-primary: #e2e2ea;
    --text-secondary: #9898a8;
    --text-muted: #5a5a6e;

    --accent: #00e88f;
    --accent-dim: #00b870;
    --accent-glow: rgba(0, 232, 143, 0.15);
    --accent-secondary: #6c6cff;

    --red: #ff5f57;
    --yellow: #febc2e;
    --green: #28c840;

    --font-mono: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', monospace;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --radius: 8px;
    --radius-lg: 12px;
    --max-width: 1100px;
    --transition: 0.2s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent-dim);
}

::selection {
    background: var(--accent);
    color: var(--bg-primary);
}

/* ---- Navbar ---- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

.logo-bracket {
    color: var(--text-muted);
}

.logo-accent {
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: 6px;
    transition: all var(--transition);
    text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
    background: var(--accent-glow);
}

.dark-mode-btn {
    background: none;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition);
    margin-left: 8px;
}

.dark-mode-btn:hover {
    border-color: var(--accent);
    background: var(--accent-glow);
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-secondary);
    transition: all var(--transition);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 16px 24px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}

.mobile-menu .nav-link {
    padding: 10px 0;
}

.mobile-menu.open {
    display: flex;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .nav-hamburger {
        display: flex;
    }
}

/* ---- Main Content ---- */
.main-content {
    flex: 1;
}

/* ---- Sections ---- */
.section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 48px 24px;
}

.page-header {
    padding-bottom: 16px;
}

.page-title {
    font-family: var(--font-mono);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.page-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
}

.section-title {
    font-family: var(--font-mono);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hash {
    color: var(--accent);
    margin-right: 4px;
}

.section-intro {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.section-note {
    color: var(--text-secondary);
    margin-top: 24px;
    font-size: 0.95rem;
}

.section-note strong {
    color: var(--accent);
}

/* ---- Hero / Terminal ---- */
.hero {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 80px 24px 32px;
}

.hero-terminal,
.terminal-block {
    background: var(--bg-terminal);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-width: 720px;
}

.terminal-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-light);
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dot.red { background: var(--red); }
.terminal-dot.yellow { background: var(--yellow); }
.terminal-dot.green { background: var(--green); }

.terminal-title {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-left: 8px;
}

.terminal-body {
    padding: 24px;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    line-height: 2;
}

.terminal-line {
    color: var(--text-primary);
}

.prompt {
    color: var(--accent);
    margin-right: 8px;
}

.terminal-output {
    color: var(--text-secondary);
    padding-left: 20px;
}

.error-text {
    color: var(--red);
}

.terminal-link {
    color: var(--accent);
}

.cursor {
    color: var(--accent);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.typed::after {
    content: '▊';
    color: var(--accent);
    animation: blink 1s infinite;
}

/* ---- Cards ---- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.card,
.stack-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 28px;
    transition: all var(--transition);
}

.card:hover,
.stack-card:hover {
    border-color: var(--border);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}

.card-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.card h3 {
    font-family: var(--font-mono);
    font-size: 1rem;
    margin-bottom: 8px;
}

.card p,
.stack-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
}

.stack-card h3 {
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 12px;
}

.stack-card ul {
    list-style: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.stack-card li {
    padding: 4px 0;
}

.stack-card li strong {
    color: var(--text-primary);
}

/* ---- Featured Card ---- */
.featured-card {
    background: var(--bg-card);
    border: 1px solid var(--accent-dim);
    border-radius: var(--radius-lg);
    padding: 36px;
    position: relative;
    overflow: hidden;
}

.featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
}

.featured-badge {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent);
    background: var(--accent-glow);
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 12px;
}

.featured-card h3 {
    font-family: var(--font-mono);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.featured-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    max-width: 600px;
}

/* ---- Buttons ---- */
.btn {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    padding: 10px 20px;
    border-radius: 6px;
    background: var(--accent);
    color: var(--bg-primary);
    font-weight: 600;
    display: inline-block;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn:hover {
    background: var(--accent-dim);
    color: var(--bg-primary);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-secondary);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-glow);
}

.btn-sm {
    padding: 6px 14px;
    font-size: 0.8rem;
}

/* ---- Posts ---- */
.posts-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 24px;
}

.post-preview {
    display: flex;
    flex-direction: column;
    padding: 20px 24px;
    border-radius: var(--radius);
    transition: all var(--transition);
    text-decoration: none;
    border: 1px solid transparent;
}

.post-preview:hover {
    background: var(--bg-card);
    border-color: var(--border-light);
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.post-date {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.post-tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--accent-secondary);
    background: rgba(108, 108, 255, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

.post-title {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.05rem;
}

.post-summary {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ---- Post Article ---- */
.post-article {
    max-width: 740px;
}

.post-header {
    margin-bottom: 32px;
}

.back-link {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-muted);
    display: inline-block;
    margin-bottom: 16px;
}

.back-link:hover {
    color: var(--accent);
}

.post-title-full {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.post-body {
    font-size: 1.05rem;
    line-height: 1.8;
}

.post-body h2 {
    font-family: var(--font-mono);
    font-size: 1.3rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--accent);
}

.post-body h3 {
    font-size: 1.1rem;
    margin-top: 32px;
    margin-bottom: 12px;
}

.post-body p {
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.post-body strong {
    color: var(--text-primary);
}

.post-body code {
    font-family: var(--font-mono);
    font-size: 0.88em;
    background: var(--bg-card);
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--accent);
}

.post-body pre {
    background: var(--bg-terminal);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    overflow-x: auto;
    margin: 20px 0;
}

.post-body pre code {
    background: none;
    padding: 0;
    color: var(--text-primary);
    font-size: 0.85rem;
}

.post-body ul, .post-body ol {
    margin: 16px 0;
    padding-left: 24px;
    color: var(--text-secondary);
}

.post-body li {
    margin-bottom: 8px;
}

.post-body blockquote {
    border-left: 3px solid var(--accent);
    padding-left: 20px;
    margin: 20px 0;
    color: var(--text-muted);
    font-style: italic;
}

/* ---- Project Cards ---- */
.project-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 24px;
    transition: all var(--transition);
}

.project-card:hover {
    border-color: var(--border);
    transform: translateY(-2px);
}

.project-card.featured {
    margin-bottom: 20px;
}

.project-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.project-header h3 {
    font-family: var(--font-mono);
    font-size: 1.05rem;
}

.project-badge {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--accent);
    background: var(--accent-glow);
    padding: 3px 8px;
    border-radius: 4px;
}

.project-lang {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.project-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin-bottom: 16px;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.project-tech span {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-muted);
    background: var(--bg-primary);
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid var(--border-light);
}

.project-links {
    display: flex;
    gap: 8px;
}

/* ---- Stats ---- */
.stats-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.stat {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 24px 32px;
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.stat-number {
    display: block;
    font-family: var(--font-mono);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ---- About ---- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
}

.about-text h2 {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    color: var(--accent);
    margin-top: 32px;
    margin-bottom: 12px;
}

.about-text h2:first-child {
    margin-top: 0;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.about-text strong {
    color: var(--text-primary);
}

.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 20px;
}

.info-card h3 {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.info-list {
    font-size: 0.9rem;
}

.info-list dt {
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    margin-top: 10px;
}

.info-list dd {
    color: var(--text-primary);
    margin-left: 0;
}

.link-list {
    list-style: none;
}

.link-list li {
    padding: 4px 0;
}

.link-list a {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.link-list a:hover {
    color: var(--accent);
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

/* ---- Stack Page ---- */
.stack-diagram {
    margin-bottom: 32px;
}

.architecture-ascii {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    line-height: 1.5;
    color: var(--accent);
    background: var(--bg-terminal);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    overflow-x: auto;
}

.code-block {
    margin: 24px 0;
}

.code-header {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
    background: var(--bg-card);
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-bottom: none;
    border-radius: var(--radius) var(--radius) 0 0;
}

.code-block pre {
    background: var(--bg-terminal);
    border: 1px solid var(--border);
    border-radius: 0 0 var(--radius) var(--radius);
    padding: 20px;
    overflow-x: auto;
}

.code-block code {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-primary);
}

/* ---- Error Page ---- */
.error-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

/* ---- Empty State ---- */
.empty-state {
    background: var(--bg-terminal);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    text-align: center;
}

/* ---- Toast ---- */
.toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--bg-card);
    border: 1px solid var(--accent);
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    padding: 14px 28px;
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(0, 232, 143, 0.15);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
    pointer-events: none;
    white-space: nowrap;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ---- Footer ---- */
.footer {
    border-top: 1px solid var(--border-light);
    margin-top: 48px;
    background: var(--bg-secondary);
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 48px 24px 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-col h4 {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-family: var(--font-mono);
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
    padding: 3px 0;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero {
        padding: 48px 24px 24px;
    }

    .page-title {
        font-size: 1.6rem;
    }

    .stats-row {
        gap: 12px;
    }

    .stat {
        padding: 16px 20px;
    }

    .stat-number {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ---- Cookie Consent Banner ---- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 0;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
}

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-text {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.cookie-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.cookie-title {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.cookie-detail {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.cookie-detail a {
    color: var(--accent);
}

.cookie-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }
    .cookie-actions {
        justify-content: flex-end;
    }
}

/* ---- Contact Page ---- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
}

.contact-main p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 28px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
}

.contact-method:last-child {
    border-bottom: none;
}

.contact-label {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--text-muted);
    min-width: 80px;
}

.contact-method a {
    font-size: 0.92rem;
}

.contact-value {
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.contact-note {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.open-to-list {
    list-style: none;
}

.open-to-list li {
    padding: 5px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    position: relative;
    padding-left: 16px;
}

.open-to-list li::before {
    content: '>';
    font-family: var(--font-mono);
    color: var(--accent);
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ---- Uses Page ---- */
.uses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-bottom: 8px;
}

.uses-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 20px;
    transition: all var(--transition);
}

.uses-item:hover {
    border-color: var(--border);
    background: var(--bg-card-hover);
}

.uses-item h3 {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--accent);
    margin-bottom: 6px;
}

.uses-item p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ---- Privacy Page ---- */
.privacy-content {
    max-width: 740px;
}

/* ---- Pygments syntax highlighting (monokai-ish) ---- */
.codehilite .hll { background-color: #49483e }
.codehilite { background: var(--bg-terminal); }
.codehilite .c { color: #75715e } /* Comment */
.codehilite .k { color: #66d9ef } /* Keyword */
.codehilite .o { color: #f92672 } /* Operator */
.codehilite .p { color: var(--text-primary) }
.codehilite .cm { color: #75715e } /* Comment.Multiline */
.codehilite .cp { color: #75715e } /* Comment.Preproc */
.codehilite .c1 { color: #75715e } /* Comment.Single */
.codehilite .cs { color: #75715e } /* Comment.Special */
.codehilite .gd { color: #f92672 } /* Generic.Deleted */
.codehilite .ge { font-style: italic }
.codehilite .gi { color: #a6e22e } /* Generic.Inserted */
.codehilite .gs { font-weight: bold }
.codehilite .gu { color: #75715e } /* Generic.Subheading */
.codehilite .kc { color: #66d9ef } /* Keyword.Constant */
.codehilite .kd { color: #66d9ef } /* Keyword.Declaration */
.codehilite .kn { color: #f92672 } /* Keyword.Namespace */
.codehilite .kp { color: #66d9ef } /* Keyword.Pseudo */
.codehilite .kr { color: #66d9ef } /* Keyword.Reserved */
.codehilite .kt { color: #66d9ef } /* Keyword.Type */
.codehilite .ld { color: #e6db74 } /* Literal.Date */
.codehilite .m { color: #ae81ff } /* Literal.Number */
.codehilite .s { color: #e6db74 } /* Literal.String */
.codehilite .na { color: #a6e22e } /* Name.Attribute */
.codehilite .nb { color: #f8f8f2 } /* Name.Builtin */
.codehilite .nc { color: #a6e22e } /* Name.Class */
.codehilite .no { color: #66d9ef } /* Name.Constant */
.codehilite .nd { color: #a6e22e } /* Name.Decorator */
.codehilite .ni { color: #f8f8f2 } /* Name.Entity */
.codehilite .ne { color: #a6e22e } /* Name.Exception */
.codehilite .nf { color: #a6e22e } /* Name.Function */
.codehilite .nl { color: #f8f8f2 } /* Name.Label */
.codehilite .nn { color: #f8f8f2 } /* Name.Namespace */
.codehilite .nx { color: #a6e22e } /* Name.Other */
.codehilite .py { color: #f8f8f2 } /* Name.Property */
.codehilite .nt { color: #f92672 } /* Name.Tag */
.codehilite .nv { color: #f8f8f2 } /* Name.Variable */
.codehilite .ow { color: #f92672 } /* Operator.Word */
.codehilite .w { color: #f8f8f2 } /* Text.Whitespace */
.codehilite .mf { color: #ae81ff } /* Literal.Number.Float */
.codehilite .mh { color: #ae81ff } /* Literal.Number.Hex */
.codehilite .mi { color: #ae81ff } /* Literal.Number.Integer */
.codehilite .mo { color: #ae81ff } /* Literal.Number.Oct */
.codehilite .sb { color: #e6db74 } /* Literal.String.Backtick */
.codehilite .sc { color: #e6db74 } /* Literal.String.Char */
.codehilite .sd { color: #e6db74 } /* Literal.String.Doc */
.codehilite .s2 { color: #e6db74 } /* Literal.String.Double */
.codehilite .se { color: #ae81ff } /* Literal.String.Escape */
.codehilite .sh { color: #e6db74 } /* Literal.String.Heredoc */
.codehilite .si { color: #e6db74 } /* Literal.String.Interpol */
.codehilite .sx { color: #e6db74 } /* Literal.String.Other */
.codehilite .sr { color: #e6db74 } /* Literal.String.Regex */
.codehilite .s1 { color: #e6db74 } /* Literal.String.Single */
.codehilite .ss { color: #e6db74 } /* Literal.String.Symbol */
.codehilite .bp { color: #f8f8f2 } /* Name.Builtin.Pseudo */
.codehilite .vc { color: #f8f8f2 } /* Name.Variable.Class */
.codehilite .vg { color: #f8f8f2 } /* Name.Variable.Global */
.codehilite .vi { color: #f8f8f2 } /* Name.Variable.Instance */
.codehilite .il { color: #ae81ff } /* Literal.Number.Integer.Long */
