/* NextJsLaunchpad - Ultra Minimal Black & White */
:root {
    /* Colors */
    --color-primary: #000000;
    --color-primary-hover: #333333;
    --color-primary-light: rgba(0, 0, 0, 0.04);
    --color-secondary: #666666;
    --color-accent: #000000;
    --color-background: #ffffff;
    --color-surface: #ffffff;
    --color-text: #000000;
    --color-text-muted: #525252;
    --color-border: #eaeaea;

    /* Header */
    --header-bg: #ffffff;
    --header-border: 1px solid #eaeaea;
    --header-shadow: none;
    --header-height: 52px;
    --logo-font-size: 1rem;
    --logo-font-weight: 700;
    --logo-letter-spacing: -0.02em;

    /* Footer */
    --footer-bg: #fafafa;
    --footer-text: #666666;
    --footer-accent: #000000;
    --footer-border: 1px solid #eaeaea;

    /* Typography */
    --font-family-sans: 'Inter', -apple-system, system-ui, sans-serif;
    --font-family-heading: 'Inter', -apple-system, system-ui, sans-serif;
    --font-size-base: 0.9375rem;
    --font-weight-heading: 700;
    --line-height-base: 1.6;
    --line-height-heading: 1.15;
    --heading-text-transform: uppercase;
    --heading-letter-spacing: 0.06em;

    /* Layout */
    --max-width-content: 1080px;
    --max-width-article: 680px;
    --sidebar-width: 260px;
    --border-radius: 0;
    --border-radius-lg: 0;
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.375rem;
    --spacing-md: 0.75rem;
    --spacing-lg: 1rem;
    --spacing-xl: 1.5rem;
    --spacing-2xl: 2.5rem;

    /* Cards */
    --card-border: 1px solid #eaeaea;
    --card-shadow: none;
    --card-shadow-hover: none;
    --card-transform-hover: none;
    --card-image-height: 180px;
    --card-padding: 1.25rem;

    /* Decorative */
    --accent-gradient: none;
    --header-decoration: none;
    --code-bg: #111111;
    --code-text: #ffffff;

    /* Shadows */
    --shadow-sm: none;
    --shadow-md: none;
    --shadow-lg: none;

    /* Tags */
    --tag-bg: transparent;
    --tag-border: 1px solid #eaeaea;
    --tag-radius: 0;
    --tag-font-size: 0.6875rem;

    /* Pagination */
    --pagination-radius: 0;
    --pagination-active-bg: #000000;
    --pagination-active-text: #ffffff;

    /* Nav */
    --nav-link-font-weight: 500;
    --nav-link-text-transform: uppercase;
    --nav-link-letter-spacing: 0.04em;
}

/* Ultra minimal card hover - just border darken */
.article-card {
    transition: border-color 0.15s ease;
}
.article-card:hover {
    border-color: #000000;
}

/* Category - tiny uppercase */
.article-card-category {
    font-size: 0.625rem;
    letter-spacing: 0.12em;
    font-weight: 600;
    color: #000000;
}

/* Article titles - tight tracking */
.article-card-title {
    font-size: 1rem;
    letter-spacing: -0.01em;
    font-weight: 700;
}
.article-card-title a {
    color: #000000;
}
.article-card-title a:hover {
    color: #666666;
}

/* Monochrome tags */
.tag-badge {
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.625rem;
    font-weight: 600;
    padding: 0.25rem 0.625rem;
}
.tag-badge:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

/* Hairline sidebar */
.sidebar-title,
.category-nav-title {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 1px solid #000000;
    padding-bottom: 0.5rem;
    font-weight: 600;
}

/* Minimal blockquote */
.prose blockquote {
    border-left: 2px solid #000000;
    background: transparent;
    padding: 0 0 0 1.25rem;
    font-style: italic;
    color: #666666;
    border-radius: 0;
}

/* Tighten everything */
.article-grid {
    gap: 1px;
    background: #eaeaea;
}
.article-grid .article-card {
    border: none;
}

/* Footer minimal */
.site-footer {
    padding: 1.5rem 0;
}

/* Pagination minimal */
.pagination-link {
    border: none;
    min-width: 2rem;
    height: 2rem;
    font-size: 0.8125rem;
    font-weight: 500;
}
.pagination-link:hover {
    color: #000000;
}

/* Language Picker - Ultra minimal text grid */
.language-picker-section {
    border-top: 1px solid #eaeaea;
    padding: 2rem 0;
}
.language-picker-title {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #000000;
}
.language-picker-subtitle {
    display: none;
}
.language-picker-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0;
    border-top: 1px solid #eaeaea;
    border-left: 1px solid #eaeaea;
}
.language-picker-item {
    border: none;
    border-right: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    border-radius: 0;
    padding: 0.625rem 0.5rem;
    background: transparent;
}
.language-picker-item:hover {
    background: #000000;
    transform: none;
    box-shadow: none;
}
.language-picker-item:hover .language-native,
.language-picker-item:hover .language-name {
    color: #ffffff;
}
.language-picker-item.active {
    background: #000000;
    border-radius: 0;
}
.language-picker-item .language-native {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}
.language-picker-item .language-name {
    font-size: 0.5625rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
