/* === BASE RESET & GLOBAL STYLES === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0a0a0a;
    --text: #e0e0e0;
    --accent: #5ce1ff;
    --accent-dim: #5ce1ff33;
    --accent-glow: #5ce1ff44;
    --card-bg: #111111;
    --card-border: #222222;
    --font-mono: 'Courier New', Courier, monospace;
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-mono);
    background-color: var(--bg);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    cursor: none;
}

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

a:hover {
    opacity: 0.8;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* === CURSOR BLOB === */
.cursor-blob {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    mix-blend-mode: difference;
    z-index: 9999;
    transition: transform 0.1s ease;
    transform: translate(-50%, -50%);
}

/* === SHARED PROJECT PAGE STYLES === */
.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

.back-link:hover {
    opacity: 1;
}

.project-hero {
    margin-bottom: 3rem;
}

.project-hero h1 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.project-hero .subtitle {
    font-size: 1.1rem;
    opacity: 0.7;
}

.project-section {
    margin-bottom: 2.5rem;
}

.project-section h2 {
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 1rem;
    opacity: 0.9;
}

.project-section p,
.project-section li {
    line-height: 1.8;
    opacity: 0.85;
}

.project-section ul {
    list-style: none;
    padding: 0;
}

.project-section ul li::before {
    content: "$ ";
    color: var(--accent);
    opacity: 0.6;
}

.cta-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.8rem 1.8rem;
    background: var(--accent);
    color: var(--bg);
    font-family: var(--font-mono);
    font-weight: bold;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px var(--accent-dim);
    opacity: 1;
    color: var(--bg);
}

/* === FOOTER === */
.footer {
    margin-top: 6rem;
    padding-top: 2rem;
    border-top: 1px solid var(--card-border);
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.5;
}

/* === RESPONSIVE === */
@media (max-width: 600px) {
    .container {
        padding: 2rem 1rem;
    }

    body {
        cursor: auto;
    }

    .cursor-blob {
        display: none;
    }
}
