/* =========================================
   just me and linux — Ghost Theme
   Terminal vibes, human readability
   ========================================= */

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

:root {
    --bg: #0d1117;
    --bg-card: #161b22;
    --bg-elevated: #1c2128;
    --border: #30363d;
    --text: #c9d1d9;
    --text-muted: #8b949e;
    --text-dim: #6e7681;
    --green: #00ff41;
    --green-dim: rgba(0, 255, 65, 0.12);
    --green-hover: #33ff6a;
    --amber: #ff6600;
    --amber-dim: rgba(255, 102, 0, 0.12);
    --red: #ff6b6b;
    --yellow: #ffd93d;
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', 'Consolas', monospace;
    --max-width: 1200px;
    --content-width: 720px;
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.2s ease;
}

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

html { scroll-behavior: smooth; }

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

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

img { max-width: 100%; height: auto; }

/* --- Site Wrapper --- */
.site-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-main { flex: 1; }

/* --- Header --- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(13, 17, 23, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

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

.site-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
}

.site-logo:hover { color: var(--green); }
.site-logo:hover .terminal-prompt { color: var(--green); }

.terminal-prompt {
    color: var(--green);
    font-weight: 700;
}

.cursor {
    animation: blink 1s step-end infinite;
    color: var(--green);
    font-weight: 300;
}

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

.nav-list {
    display: flex;
    list-style: none;
    gap: 4px;
}

.nav-list a {
    color: var(--green);
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 6px;
    transition: all var(--transition);
    text-decoration: none;
}

.nav-list a:hover {
    color: #fff;
    background: var(--green-dim);
    text-shadow: 0 0 8px rgba(0, 255, 65, 0.3);
}

.nav-list a.active {
    color: #fff;
    background: var(--green-dim);
    border-bottom: 2px solid var(--green);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--green);
    border-radius: 2px;
    transition: all 0.3s;
}

/* --- Hero --- */
.hero {
    padding: 80px 24px 40px;
    text-align: center;
}

.hero-inner {
    max-width: var(--content-width);
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-mono);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--amber);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.hero-prompt {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 0;
}

.hero-prompt .cursor {
    color: var(--green);
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

/* --- Tools Showcase --- */
.tools-showcase {
    padding: 0 24px 48px;
}

.showcase-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--amber);
    margin-bottom: 16px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.tool-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
    text-decoration: none;
}

.tool-card:hover {
    border-color: rgba(0, 255, 65, 0.4);
    box-shadow: 0 0 16px rgba(0, 255, 65, 0.06);
    transform: translateY(-1px);
}

.tool-icon {
    font-size: 1.4rem;
}

.tool-name {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
}

.tool-card:hover .tool-name {
    color: var(--green);
}

/* --- LFS Banner --- */
.quick-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 16px 24px 40px;
    flex-wrap: wrap;
}

.quick-nav-item {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--text-main);
    text-decoration: none;
    padding: 6px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-card);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.quick-nav-item:hover {
    border-color: var(--amber);
    color: var(--amber);
    box-shadow: 0 0 12px rgba(255, 102, 0, 0.1);
}

.quick-nav-sep {
    color: var(--text-dim);
    font-size: 0.8rem;
}

@media (max-width: 640px) {
    .quick-nav { gap: 8px; }
    .quick-nav-sep { display: none; }
    .quick-nav-item { font-size: 0.8rem; padding: 5px 10px; }
}

.lfs-banner {
    padding: 0 24px 48px;
}

.banner-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.banner-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.2s ease;
    text-decoration: none;
    border-left: 3px solid var(--amber);
}

.banner-link:hover {
    border-color: var(--amber);
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.08);
    transform: translateY(-1px);
}

.banner-icon { font-size: 2rem; flex-shrink: 0; }

.banner-text { flex: 1; }

.banner-title {
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 600;
    color: var(--amber);
    margin-bottom: 4px;
}

.banner-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.banner-arrow {
    font-size: 1.4rem;
    color: var(--text-dim);
    flex-shrink: 0;
    transition: color 0.2s, transform 0.2s;
}

.banner-link:hover .banner-arrow {
    color: var(--amber);
    transform: translateX(4px);
}

/* --- Filter Pills --- */
.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.filter-pill {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    padding: 5px 14px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: transparent;
    transition: all 0.2s ease;
    text-decoration: none;
}

.filter-pill:hover {
    color: var(--green);
    border-color: rgba(0, 255, 65, 0.4);
    background: var(--green-dim);
}

.filter-pill.active {
    color: #fff;
    background: var(--green-dim);
    border-color: var(--green);
}

/* --- Feed Header & Filters --- */
.feed-header {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px 20px;
}

/* --- Post Feed --- */
.post-feed {
    padding: 20px 24px 40px;
}

.feed-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

/* --- Post Cards --- */
.post-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    border-color: rgba(0, 255, 65, 0.4);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.06);
    transform: translateY(-2px);
}

.post-card-image-link { display: block; overflow: hidden; }
.post-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.post-card:hover .post-card-image { transform: scale(1.03); }

.post-card-content {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.post-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.tag-pill {
    font-size: 11px;
    font-weight: 600;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    background: var(--green-dim);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 65, 0.2);
    transition: all var(--transition);
}

.tag-pill:hover {
    background: rgba(0, 255, 65, 0.2);
    color: #fff;
}

.post-card-link { text-decoration: none; }

.post-card-title {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
    color: #e6edf3;
    transition: color var(--transition);
}

.post-card:hover .post-card-title,
.post-card-link:hover .post-card-title {
    color: var(--amber);
}

.post-card-excerpt {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 16px;
}

.post-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-dim);
    font-family: var(--font-mono);
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.meta-sep { color: var(--border); }

/* --- Single Post --- */
.post-full {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 48px 24px 80px;
}

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

.post-meta-top {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-dim);
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.post-tag {
    color: var(--green);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    background: var(--green-dim);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 65, 0.2);
}

.separator { color: var(--border); }

.post-title {
    font-family: var(--font-mono);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--amber);
    letter-spacing: -0.01em;
}

.post-excerpt {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-top: 12px;
    line-height: 1.6;
}

.post-feature-image {
    margin: 0 0 40px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.post-feature-image img {
    width: 100%;
    display: block;
}

.post-feature-image figcaption {
    text-align: center;
    font-size: 13px;
    color: var(--text-dim);
    margin-top: 8px;
    padding: 0 16px;
}

/* --- Post Content --- */
.post-content {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text);
}

.post-content h2 {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--amber);
    margin: 52px 0 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.post-content h3 {
    font-family: var(--font-mono);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--amber);
    margin: 40px 0 12px;
}

.post-content h4 {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin: 32px 0 10px;
}

.post-content p { margin: 0 0 24px; }

.post-content a {
    color: var(--green);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition);
}

.post-content a:hover {
    border-bottom-color: var(--green);
}

.post-content code {
    font-family: var(--font-mono);
    font-size: 0.88em;
    background: var(--bg-elevated);
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid var(--border);
    color: var(--green);
}

.post-content pre {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 20px;
    overflow-x: auto;
    margin: 0 0 24px;
    position: relative;
}

.post-content pre code {
    background: none;
    border: none;
    padding: 0;
    font-size: 14px;
    color: var(--green);
    line-height: 1.6;
}

.post-content blockquote {
    border-left: 3px solid var(--green);
    padding: 12px 0 12px 20px;
    margin: 0 0 24px;
    background: rgba(0, 255, 65, 0.03);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--text-muted);
    font-style: italic;
}

.post-content ul, .post-content ol {
    margin: 0 0 24px 24px;
}

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

.post-content img {
    border-radius: var(--radius-sm);
    margin: 24px 0;
    border: 1px solid var(--border);
}

.post-content hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 48px 0;
}

.post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 24px;
}

.post-content th, .post-content td {
    padding: 10px 14px;
    border: 1px solid var(--border);
    text-align: left;
}

.post-content th {
    background: var(--bg-elevated);
    font-weight: 600;
    color: var(--amber);
}

/* --- Author Card (post footer) --- */
.post-footer {
    margin-top: 60px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.author-card {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
}

.author-avatar-placeholder {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bg-elevated);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 2px solid var(--border);
}

.author-name {
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}

.author-name a { color: var(--text); }
.author-name a:hover { color: var(--green); }

.author-bio {
    font-size: 14px;
    color: var(--text-muted);
}

/* --- Tag/Author Page Headers --- */
.tag-header, .author-header {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 48px 24px 24px;
    text-align: center;
}

.tag-title {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 700;
    color: var(--amber);
}

.tag-count {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text-dim);
    margin-top: 8px;
}

.tag-description, .author-header-bio {
    color: var(--text-muted);
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.6;
}

.author-header-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 16px;
    border: 2px solid var(--border);
}

.author-header-name {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 700;
    color: var(--amber);
}

/* --- Pagination --- */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 0 24px 60px;
}

.pagination-btn {
    padding: 10px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--green);
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 500;
    transition: all var(--transition);
}

.pagination-btn:hover {
    border-color: var(--green);
    box-shadow: 0 0 12px rgba(0, 255, 65, 0.1);
}

.dim {
    color: var(--text-dim);
    font-family: var(--font-mono);
    font-size: 13px;
}

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

.error-terminal {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    max-width: 500px;
    width: 100%;
    overflow: hidden;
}

.error-code {
    font-size: 4rem;
    font-weight: 800;
    color: var(--red);
    margin: 16px 0 8px;
    font-family: var(--font-mono);
}

.error-message {
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* --- Page --- */
.page-full {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 48px 24px 80px;
}

/* --- Footer --- */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 48px 24px 24px;
    margin-top: 40px;
}

.footer-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.footer-heading {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 600;
    color: var(--amber);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--green);
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-dim);
}

.footer-sep {
    color: var(--border);
}

/* --- Comments --- */
.post-comments {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 24px 60px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .hero-title { font-size: 2rem; }
    .post-title { font-size: 1.6rem; }
    .feed-inner { grid-template-columns: 1fr; }
    /* removed old hero-stats */
    .tools-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; text-align: center; }
    .footer-bottom { flex-direction: column; gap: 4px; }
    .banner-link { flex-direction: column; text-align: center; gap: 12px; }
    .banner-arrow { display: none; }
    .filter-pills { justify-content: center; }

    .nav-toggle {
        display: flex;
    }

    .nav-list {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--bg);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 16px 24px;
        gap: 0;
    }

    .nav-list a {
        display: block;
        padding: 10px 14px;
        font-size: 14px;
    }

    .nav-list.open { display: flex; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.6rem; }
    .hero { padding: 60px 24px 30px; }
    .post-title { font-size: 1.4rem; }
    .tools-grid { grid-template-columns: 1fr; }
    .post-card-content { padding: 16px; }
}

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-dim); }

/* --- Selection --- */
::selection {
    background: var(--green-dim);
    color: var(--green);
}

/* --- Koenig Editor Cards --- */
.kg-width-wide {
    max-width: 1040px;
    margin-left: calc(50% - 520px);
    margin-right: calc(50% - 520px);
}

.kg-width-full {
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.kg-width-wide img, .kg-width-full img { width: 100%; }

@media (max-width: 1080px) {
    .kg-width-wide { margin-left: -24px; margin-right: -24px; max-width: calc(100% + 48px); }
}

.kg-image-card, .kg-gallery-card { margin: 0 0 24px; }
.kg-image-card img { border-radius: var(--radius-sm); }
.kg-image-card figcaption, .kg-gallery-card figcaption {
    text-align: center; font-size: 13px; color: var(--text-dim); margin-top: 8px;
}

.kg-bookmark-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin: 0 0 24px;
}

.kg-bookmark-container {
    display: flex;
    text-decoration: none;
    color: var(--text);
}

.kg-bookmark-content { padding: 16px; flex: 1; }
.kg-bookmark-title { font-weight: 600; margin-bottom: 4px; }
.kg-bookmark-description { font-size: 14px; color: var(--text-muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.kg-bookmark-metadata { display: flex; align-items: center; gap: 8px; margin-top: 12px; font-size: 13px; color: var(--text-dim); }
.kg-bookmark-icon { width: 20px; height: 20px; }
.kg-bookmark-thumbnail { width: 200px; min-height: 100%; }
.kg-bookmark-thumbnail img { width: 100%; height: 100%; object-fit: cover; }

.kg-callout-card {
    padding: 20px;
    border-radius: var(--radius-sm);
    margin: 0 0 24px;
    display: flex;
    gap: 12px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
}

.kg-callout-emoji { font-size: 1.2em; }

.kg-toggle-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin: 0 0 24px;
}

.kg-toggle-heading-container {
    padding: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kg-toggle-content { padding: 0 16px 16px; }

/* --- Syntax Highlighting --- */
.post-content pre code .token.comment { color: var(--text-dim); }
.post-content pre code .token.keyword { color: #ff7b72; }
.post-content pre code .token.string { color: #a5d6ff; }
.post-content pre code .token.function { color: #d2a8ff; }
.post-content pre code .token.number { color: #79c0ff; }
.post-content pre code .token.operator { color: #ff7b72; }
.post-content pre code .token.class-name { color: #ffa657; }
.post-content pre code .token.variable { color: #ffa657; }

/* --- Start Here Section --- */
.start-here {
    margin: 2rem 0 3rem;
    padding: 0 2rem;
}

.start-here-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.start-here-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--green-dim), transparent, var(--amber-dim));
    opacity: 0.5;
    z-index: 0;
}

.start-here-title {
    font-family: var(--font-mono);
    font-size: 1.8rem;
    color: var(--green);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.start-here-title .prompt {
    color: var(--text-muted);
    margin-right: 0.5rem;
}

.start-here-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.start-here-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.start-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.start-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--green-dim), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.start-card:hover::before {
    left: 100%;
}

.start-card:hover {
    border-color: var(--green);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 65, 0.1);
}

.start-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
    position: relative;
    z-index: 1;
}

.start-card h3 {
    color: var(--green);
    font-family: var(--font-mono);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.start-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.start-card strong {
    color: var(--text);
    font-weight: 500;
}

.start-card a {
    color: var(--green);
    font-weight: 500;
}

.start-card a:hover {
    color: var(--green-hover);
}

.start-card-meta {
    color: var(--text-dim) !important;
    font-size: 0.8rem !important;
    margin-top: 0.5rem !important;
    font-style: italic;
}

/* Start Here Mobile Styles */
@media (max-width: 768px) {
    .start-here { 
        margin: 1.5rem 0 2rem; 
        padding: 0 1rem; 
    }
    .start-here-inner { 
        padding: 2rem; 
    }
    .start-here-title { 
        font-size: 1.5rem; 
    }
    .start-here-grid { 
        grid-template-columns: 1fr; 
        gap: 1rem; 
    }
    .start-card { 
        padding: 1.25rem; 
    }
}
