/* ---
   Design by Gemini
   Font: JetBrains Mono
   Palette:
     - Background: #0a0a0a
     - Text: rgba(255, 255, 255, 0.87)
     - Accent: #00BFFF
     - Muted: rgba(255, 255, 255, 0.5)
--- */

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

:root {
    --bg-color: #0a0a0a;
    --text-color: rgba(255, 255, 255, 0.87);
    --accent-color: #00BFFF;
    --muted-color: rgba(255, 255, 255, 0.5);
    --font-family: 'JetBrains Mono', monospace;
}

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

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- Typography --- */
h1, h2, h3 {
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
    color: var(--accent-color);
}

h1 {
    font-size: 2rem;
    letter-spacing: -1px;
}

h2 {
    font-size: 1.5rem;
    margin-top: 2.5em;
    margin-bottom: 1em;
    border-bottom: 1px solid var(--muted-color);
    padding-bottom: 0.5em;
}

p {
    margin: 0 0 1.5em 0;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.7;
}

ul {
    list-style: none;
    padding-left: 0;
}

li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 0.75em;
}

li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}


/* --- Layout --- */
.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 4rem 2rem;
}

.container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

header {
    margin-bottom: 4rem;
}

main {
    flex: 1;
}

footer {
    margin-top: 4rem;
    font-size: 0.875rem;
    color: var(--muted-color);
    text-align: center;
}

.muted {
    color: var(--muted-color);
}

.dim {
    color: var(--muted-color);
    opacity: 0.6;
}

/* --- Components --- */
.links-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.links-list li {
    padding-left: 0;
    margin-bottom: 1rem;
}

.links-list li::before {
    content: ''; /* Remove arrow for these */
}

.links-list a {
    display: block;
    font-size: 1.125rem;
}

.links-list .url {
    font-size: 0.875rem;
    color: var(--muted-color);
    margin-left: 0.5em;
}

.code-block {
    background-color: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    margin: 2rem 0;
    overflow-x: auto;
    font-size: 0.9rem;
}

.code-block code {
    font-family: var(--font-family);
}

.code-block .prompt-char {
    color: var(--accent-color);
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10+ */
    user-select: none;
}

.tagline {
    font-size: 1.25rem;
    margin: 1.5rem 0;
    color: var(--text-color);
}

.brief {
    font-size: 1rem;
    max-width: 60ch;
    color: var(--muted-color);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .wrapper {
        padding: 2rem 1rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    .tagline {
        font-size: 1.125rem;
    }
}
