:root {
    scroll-behavior: smooth;
    scroll-padding-top: 120px; /* Prevent fixed header from blocking anchor targets */
    --bg-color: #030305;
    --text-primary: #ffffff;
    --text-secondary: #888890;
    --accent: #3b82f6;
    --accent-glow: rgba(59, 130, 246, 0.5);
    --surface: rgba(255, 255, 255, 0.03);
    --surface-border: rgba(255, 255, 255, 0.08);
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    /* Simplified background: removed grid lines for cleaner look */
    background-image: radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.08), transparent 50%);
    background-size: 100% 100%;
    background-position: center top;
}

.container {
    max-width: 1100px; /* Increased max-width for more breathing room */
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header - Floating Pill Style */
header {
    position: fixed;
    top: 1.5rem;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

header .container {
    background: rgba(10, 10, 12, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    padding: 0.75rem 2rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    pointer-events: auto;
    width: auto;
    max-width: 90%;
    margin: 0; /* Reset margin since we use flex center on parent */
}

.logo {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
    margin-left: 0; /* Reset previous margin */
}

nav a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Hero */
.hero {
    padding: 20rem 0 10rem; /* Increased top/bottom padding */
    text-align: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 40%; /* Moved up slightly */
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; /* Larger glow */
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%); /* Softer glow */
    opacity: 1;
    z-index: -1;
    pointer-events: none;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero .subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0 auto 4rem;
    font-weight: 400;
}

.install-box {
    display: inline-flex;
    flex-direction: column;
    align-items: stretch;
    background: var(--surface);
    border: 1px solid var(--surface-border);
    padding: 0;
    border-radius: 1rem;
    font-family: var(--font-mono);
    transition: border-color 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    min-width: 400px;
}

.loading-placeholder {
    padding: 2rem;
    color: var(--text-secondary);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.spinner {
    width: 30px;
    height: 30px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: var(--accent);
    animation: spin 1s ease-in-out infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.install-tabs {
    display: flex;
    border-bottom: 1px solid var(--surface-border);
    background: rgba(0, 0, 0, 0.2);
}

.tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 0.75rem;
    cursor: pointer;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
}

.tab-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.02);
}

.tab-btn.active {
    color: var(--accent);
    background: rgba(59, 130, 246, 0.05);
    border-bottom-color: var(--accent);
}

.tab-content {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    justify-content: space-between;
}

.os-install {
    margin-bottom: 1.5rem;
}

.os-install h4 {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.install-box:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
}

.prompt {
    color: var(--text-secondary);
    margin-right: 1rem;
    user-select: none;
}

#install-cmd-linux, #install-cmd-windows {
    margin-right: 1.5rem;
    color: #fff;
    font-size: 0.95rem;
    text-align: left;
    flex: 1;
}

.copy-btn {
    background: transparent;
    border: none;
    color: var(--accent);
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem;
    transition: color 0.3s;
}

.copy-btn:hover {
    color: #60a5fa;
}

/* Features */
.features {
    padding: 10rem 0; /* Increased padding */
    position: relative;
}

.features::before {
    display: none; /* Removed background decoration for cleaner look */
}

.features h2 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    text-align: center;
    margin-bottom: 5rem;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.features h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #8b5cf6);
    border-radius: 2px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 Columns */
    gap: 3rem; /* Increased gap from 2rem to 3rem */
    padding: 0 1rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem; /* Increased padding from 3rem to 4rem */
    border-radius: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feature-card.full-width {
    grid-column: span 2;
    flex-direction: row; /* Horizontal layout for full width */
    align-items: center;
    justify-content: space-between;
    gap: 6rem; /* Increased gap from 4rem to 6rem */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.005));
}

.feature-card.full-width.reverse {
    flex-direction: row-reverse; /* Flip for variety */
}

.card-content {
    flex: 1;
    min-width: 300px;
}

/* Visuals */
.card-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Fake Terminal */
.terminal-preview {
    background: #0d0d10;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    max-width: 400px;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg); /* 3D Effect */
    transition: transform 0.5s ease;
}

.feature-card:hover .terminal-preview {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.terminal-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 16px; /* Increased padding */
    display: flex;
    align-items: center; /* Ensure vertical alignment */
    gap: 8px; /* Increased gap */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%; /* Ensure full width */
}

.terminal-body {
    padding: 20px; /* Increased padding */
    color: #a5f3fc;
    width: 100%; /* Ensure full width */
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align text to left */
    text-align: left; /* Ensure text alignment */
}

.terminal-body .line {
    margin-bottom: 6px;
}

.terminal-body .prompt {
    color: var(--accent);
    margin-right: 8px;
}

.terminal-body .output {
    color: var(--text-secondary);
    margin-left: 16px;
}

/* Tool Grid */
.tool-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 350px;
}

.tool-badge {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--accent);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    transition: all 0.3s;
}

.feature-card:hover .tool-badge {
    background: rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card.full-width {
        grid-column: span 1;
        flex-direction: column;
        gap: 2rem;
    }
    
    .feature-card.full-width.reverse {
        flex-direction: column;
    }
    
    .terminal-preview {
        transform: none;
        width: 100%;
    }
    
    .feature-card:hover .terminal-preview {
        transform: none;
    }
}

.card-icon {
    margin-bottom: 2rem; /* More space below icon */
    background: transparent; /* Removed background box */
    width: fit-content;
    padding: 0; /* Removed padding */
    border-radius: 0;
    border: none; /* Removed border */
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Align left */
}

.card-icon svg {
    width: 40px; /* Slightly larger */
    height: 40px;
}

.feature-card h3 {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.feature-card code {
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-size: 0.85em;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

@media (max-width: 900px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card.large {
        grid-column: span 1;
    }
}

/* Flow Section */
.flow-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    /* Darker background to make the dashboard pop */
    background: radial-gradient(circle at 50% 50%, rgba(10, 10, 15, 1) 0%, rgba(3, 3, 5, 1) 100%);
    border-bottom: 1px solid var(--surface-border);
}

.flow-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.05), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.flow-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.flow-content h2 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    color: #fff;
}

.flow-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Dashboard Container */
.flow-dashboard {
    background: rgba(15, 15, 20, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: left;
}

/* Dashboard Header */
.dashboard-header {
    background: rgba(255, 255, 255, 0.03);
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.win-controls {
    display: flex;
    gap: 6px;
}

.win-controls span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #333;
}

.win-controls span:nth-child(1) { background: #ff5f56; }
.win-controls span:nth-child(2) { background: #ffbd2e; }
.win-controls span:nth-child(3) { background: #27c93f; }

.win-title {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.7;
}

/* Dashboard Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 1.5rem;
    gap: 1.5rem;
}

.dash-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: background 0.3s;
}

.dash-card:hover {
    background: rgba(255, 255, 255, 0.04);
}

.dash-icon {
    color: var(--text-secondary);
    opacity: 0.8;
}

.dash-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.dash-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    font-weight: 600;
}

.dash-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-mono);
}

/* Visuals */
.dash-visual {
    height: 24px;
    display: flex;
    align-items: center;
}

/* Progress Bar */
.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar .fill {
    height: 100%;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
}

/* Signal Line */
.signal-line {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

.signal-line::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 40%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    transform: translateY(-50%);
    animation: scan 2s linear infinite;
}

@keyframes scan {
    0% { left: -40%; }
    100% { left: 100%; }
}

/* Status Badge */
.status-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: #4ade80;
    background: rgba(74, 222, 128, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 8px #4ade80;
    animation: pulseStatus 2s infinite;
}

@keyframes pulseStatus {
    0% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
    100% { opacity: 0.5; transform: scale(1); }
}

.disclaimer {
    font-size: 0.85rem;
    color: var(--text-secondary);
    opacity: 0.6;
}

@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

/* Architecture Section */
.architecture {
    padding: 10rem 0 12rem;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.03), transparent 50%);
}

.architecture h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 6rem;
}

.arch-flow {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* Connecting Line */
.flow-line {
    position: absolute;
    left: 2rem; /* Align with step numbers */
    top: 2rem;
    bottom: 2rem;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.flow-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--accent), transparent);
    animation: flowPulse 3s linear infinite;
}

@keyframes flowPulse {
    0% { top: -100px; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* Step Card */
.arch-step {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.step-number {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-secondary);
    background: var(--bg-color);
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.arch-step:hover .step-number {
    color: var(--accent);
    border-color: var(--accent);
}

.step-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 2.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.step-icon {
    color: var(--accent);
    background: rgba(59, 130, 246, 0.1);
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0; /* Reset */
}

.step-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .arch-flow {
        gap: 3rem;
    }
    
    .flow-line {
        left: 1.5rem;
    }
    
    .arch-step {
        gap: 1.5rem;
    }
    
    .step-number {
        width: 3rem;
        height: 3rem;
        font-size: 1.2rem;
    }
    
    .step-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.5rem;
    }
}

/* Community Section */
.community-section {
    padding: 10rem 0;
    background: linear-gradient(180deg, rgba(3, 3, 5, 0) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-top: 1px solid var(--surface-border);
}

.community-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.community-content h2 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.community-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 4rem;
}

/* Repo Card */
.repo-card {
    background: rgba(15, 15, 20, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    padding: 2.5rem;
    max-width: 600px;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
}

.repo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px -15px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.repo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.repo-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-mono);
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 600;
}

.repo-badge {
    font-size: 0.75rem;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-weight: 500;
}

.repo-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2.5rem;
}

.repo-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-mono);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.repo-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-github, .btn-discord {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.btn-github {
    background: #fff;
    color: #000;
}

.btn-github:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}

.btn-discord {
    background: rgba(88, 101, 242, 0.1);
    color: #5865F2;
    border: 1px solid rgba(88, 101, 242, 0.2);
}

.btn-discord:hover {
    background: rgba(88, 101, 242, 0.2);
    transform: translateY(-2px);
}

.btn-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 1rem;
    background: var(--accent);
    color: #fff;
    width: 100%;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-download:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

/* Installation */
.installation {
    padding: 10rem 0 12rem;
    border-top: 1px solid var(--surface-border);
    position: relative;
}

/* Background Glow for Installation */
.installation::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.08), transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.installation h2 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    text-align: center;
    margin-bottom: 5rem;
}

.install-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.option {
    background: rgba(10, 10, 12, 0.6); /* Darker, semi-transparent */
    backdrop-filter: blur(20px); /* Glass effect */
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0; /* Remove padding to let header stretch */
    border-radius: 1.5rem;
    overflow: hidden; /* Clip content */
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

/* Header area of the card */
.option-header {
    padding: 2rem 2.5rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.01);
}

.option h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.option h3::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
}

.option p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

/* Content area */
.option-content {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.option pre {
    background: #050505;
    padding: 1.5rem;
    padding-right: 4rem; /* Make room for copy button */
    border-radius: 0.75rem;
    overflow-x: hidden; /* Hide scrollbar */
    white-space: pre-wrap; /* Enable wrapping */
    word-break: break-all; /* Break long URLs */
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: #e2e8f0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: block; /* Changed from flex to block for wrapping */
    position: relative;
}

.option pre code {
    background: transparent;
    padding: 0;
    border: none;
    color: inherit;
    display: inline; /* Ensure inline display */
}

/* Adjust Copy Button position */
.copy-btn-code {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-secondary);
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
    position: absolute;
    right: 12px;
    top: 12px; /* Align to top */
    transform: none; /* Remove vertical centering */
}

.copy-btn-code:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Footer */
footer {
    padding: 3rem 0;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
    border-top: 1px solid var(--surface-border);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .install-box {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        border-radius: 1rem;
        width: 100%;
    }

    #install-cmd {
        margin-right: 0;
        text-align: center;
        word-break: break-all;
    }

    .install-options {
    grid-template-columns: 1fr;
    }
}

/* Animations */
.animate-hidden {
    opacity: 0;
    transform: translateY(20px); /* Reduced movement distance */
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); /* Smoother easing */
    will-change: opacity, transform;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for grid items */
.feature-card:nth-child(1) { transition-delay: 0.1s; }
.feature-card:nth-child(2) { transition-delay: 0.2s; }
.feature-card:nth-child(3) { transition-delay: 0.3s; }
.feature-card:nth-child(4) { transition-delay: 0.4s; }

.stat:nth-child(1) { transition-delay: 0.1s; }
.stat:nth-child(2) { transition-delay: 0.2s; }
.stat:nth-child(3) { transition-delay: 0.3s; }

.arch-step:nth-child(2) { transition-delay: 0.1s; } /* 1st step (after line) */
.arch-step:nth-child(3) { transition-delay: 0.3s; } /* 2nd step */
.arch-step:nth-child(4) { transition-delay: 0.5s; } /* 3rd step */

/* Floating Animation for Icons - REMOVED for cleaner look */
/* Only animate on hover if needed */
.feature-card:hover .card-icon {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.card-icon, .step-icon {
    /* animation: float 4s ease-in-out infinite; REMOVED */
    transition: transform 0.3s ease;
}

/* Typing Cursor Animation */
.cursor {
    display: inline-block;
    width: 8px;
    height: 1.2em;
    background-color: var(--accent);
    margin-left: 2px;
    animation: blink 1s step-end infinite;
    vertical-align: middle;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Architecture Flow Animation */
.arrow {
    position: relative;
    color: var(--accent);
    font-weight: bold;
    opacity: 0.5;
    animation: pulseArrow 2s infinite;
}

@keyframes pulseArrow {
    0% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
    100% { opacity: 0.3; transform: scale(1); }
}

/* Glitch/Shine Effect on Install Box - Simplified to Hover Only */
.install-box {
    position: relative;
    overflow: hidden;
}

.install-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.03) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-25deg);
    transition: left 0.7s ease;
    pointer-events: none;
}

/* Blog Post Styles */
.blog-post {
    padding: 12rem 0 6rem; /* Increased top padding for fixed header */
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.post-bg-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 10%, rgba(59, 130, 246, 0.08), transparent 60%);
    pointer-events: none;
    z-index: -1;
}

.post-card {
    background: rgba(15, 15, 20, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 2rem;
    padding: 4rem 2rem;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.5);
}

.post-header {
    text-align: left;
    max-width: 100%;
    margin: 0 0 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.post-meta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    color: var(--text-secondary);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0;
    background: transparent;
    border: none;
}

.post-meta .post-category {
    color: var(--accent);
    background: rgba(59, 130, 246, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    font-weight: 600;
}

.post-meta .separator {
    color: rgba(255, 255, 255, 0.1);
}

.post-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    background: linear-gradient(180deg, #fff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.post-author {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.author-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.author-name {
    color: var(--text-primary);
    font-weight: 600;
}

/* Post Image */
.post-image-container {
    max-width: 1000px;
    margin: 0 auto 5rem;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
    position: relative;
}

.post-image-placeholder {
    width: 100%;
    height: 500px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.2));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    color: var(--text-secondary);
    font-family: var(--font-mono);
    position: relative;
}

.post-image-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.post-featured-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.placeholder-icon {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--accent);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
}

/* Post Content */
.post-content {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #cbd5e1;
}

.post-content .lead {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 3rem;
    font-weight: 500;
    border-left: 4px solid var(--accent);
    padding-left: 1.5rem;
}

.post-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 4rem 0 1.5rem;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.post-content h2::before {
    content: '#';
    color: var(--accent);
    opacity: 0.5;
    font-family: var(--font-mono);
    font-size: 1.5rem;
}

.post-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 3rem 0 1rem;
}

.post-content p {
    margin-bottom: 2rem;
}

.post-content ul {
    margin-bottom: 2rem;
    padding-left: 0;
    list-style: none;
}

.post-content li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.post-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-family: var(--font-mono);
}

.post-content strong {
    color: #fff;
    font-weight: 600;
}

/* Code Blocks in Post */
.code-block-wrapper {
    margin: 2.5rem 0;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #0d0d10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.code-lang {
    text-transform: uppercase;
    font-weight: 600;
}

.code-copy {
    cursor: pointer;
    transition: color 0.2s;
}

.code-copy:hover {
    color: var(--text-primary);
}

.post-content pre {
    margin: 0;
    padding: 1.5rem;
    overflow-x: auto;
    font-size: 0.95rem;
    line-height: 1.6;
    background: transparent;
    border: none;
}

.post-content code {
    font-family: var(--font-mono);
    color: #e2e8f0;
}

.post-content p code {
    background: rgba(59, 130, 246, 0.1);
    padding: 0.2em 0.4em;
    border-radius: 4px;
    font-size: 0.85em;
    color: var(--accent);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

/* Content Placeholders */
.content-placeholder-block {
    width: 100%;
    height: 300px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--text-secondary);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    transition: all 0.3s;
}

.content-placeholder-block:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .post-card {
        padding: 2rem 1.5rem;
        border-radius: 1.5rem;
    }

    .post-title {
        font-size: 2.5rem;
    }
    
    .post-image-placeholder {
        height: 300px;
    }
    
    .post-content {
        font-size: 1rem;
    }
}

/* Blog List Styles */
.blog-list {
    padding: 8rem 0 6rem;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.page-header {
    text-align: center;
    margin-bottom: 6rem;
}

.page-header h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.category-filter {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 6rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--accent);
    color: var(--accent);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* Post Card in Grid - Vertical Layout */
.posts-grid .post-card {
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    background: rgba(15, 15, 20, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    overflow: hidden;
}

.posts-grid .post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.15);
}

.posts-grid .post-image-container {
    margin: 0;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: none;
    position: relative;
}

.posts-grid .post-image-placeholder,
.posts-grid .post-featured-image {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.posts-grid .post-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.posts-grid .post-meta {
    margin-bottom: 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.posts-grid .post-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: none;
    -webkit-text-fill-color: var(--text-primary);
    color: var(--text-primary);
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.posts-grid .post-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.posts-grid .post-title a:hover {
    color: var(--accent);
}

.posts-grid .post-author {
    margin-bottom: 1.5rem;
}

.posts-grid .author-avatar {
    width: 28px;
    height: 28px;
}

.posts-grid .author-info {
    font-size: 0.85rem;
}

.post-excerpt {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.85rem;
    transition: gap 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: auto;
}

.read-more:hover {
    gap: 0.75rem;
}

.no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 1rem;
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.no-posts h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.no-posts p {
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }
}

.no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 1rem;
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.no-posts h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.no-posts p {
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
}

.menu-toggle {
    display: none;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    /* Header */
    header {
        top: 0.5rem;
        padding: 0 1rem;
        box-sizing: border-box;
    }

    header .container {
        flex-direction: column;
        gap: 0;
        padding: 0.75rem 1.25rem;
        border-radius: 1.25rem;
        width: 100%;
        max-width: 400px;
        background: rgba(10, 10, 12, 0.9);
        margin: 0 auto;
        transition: all 0.3s ease;
    }

    .header-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .menu-toggle {
        display: flex;
        background: transparent;
        border: none;
        color: #fff;
        cursor: pointer;
        padding: 0.25rem;
    }

    nav {
        display: none; /* Hidden by default on mobile */
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
        padding-top: 1rem;
        margin-top: 0.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    nav.expanded {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }
    
    nav a {
        margin-left: 0;
        font-size: 0.95rem;
        padding: 0.75rem;
        text-align: center;
        border-radius: 0.5rem;
        background: rgba(255, 255, 255, 0.03);
    }

    nav a:hover {
        background: rgba(255, 255, 255, 0.08);
    }

    /* Hero */
    .hero {
        padding: 10rem 0 6rem; /* Increased top padding to clear header */
        overflow: hidden; /* Prevent glow from causing scroll */
    }
    
    .hero::after {
        width: 100%; /* Constrain glow width */
        height: 100%;
        opacity: 0.5;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .install-box {
        min-width: auto;
        width: 100%;
    }
    
    .install-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .tab-btn {
        white-space: nowrap;
        padding: 0.75rem 1rem;
    }
    
    .tab-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    #install-cmd-linux, #install-cmd-windows {
        margin-right: 0;
        margin-bottom: 0.5rem;
        word-break: break-all;
        white-space: pre-wrap;
    }
    
    .copy-btn {
        align-self: flex-end;
        width: 100%;
        background: rgba(59, 130, 246, 0.1);
        border-radius: 4px;
        margin-top: 0.5rem;
    }

    /* Features */
    .features {
        padding: 6rem 0;
        overflow: hidden; /* Prevent potential overflow */
    }
    
    .features h2 {
        font-size: 2rem;
        width: 100%;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .feature-card.full-width {
        gap: 2rem;
    }
    
    .terminal-preview {
        margin-top: 1rem;
    }

    /* Installation */
    .installation {
        padding: 6rem 0 8rem;
        overflow: hidden; /* Prevent glow from causing scroll */
    }
    
    .installation::before {
        width: 100%; /* Constrain glow width */
        height: 100%;
    }
    
    .installation h2 {
        font-size: 2rem;
    }
    
    .install-options {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .option-content {
        padding: 1.5rem;
    }
    
    .option pre {
        padding: 1rem;
        padding-top: 2.5rem; /* Space for copy button */
    }

    /* Blog Post */
    .post-title {
        font-size: 2rem;
    }
    
    .post-meta {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .post-card {
        padding: 1.5rem;
    }

    /* General Container */
    .container {
        padding: 0 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .repo-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}
