/* Home Server Guide Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #0f172a;
}

.navbar {
    background: #1e293b;
    padding: 1rem 0;
    border-bottom: 2px solid #3b82f6;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    color: #3b82f6;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #3b82f6;
}

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

header {
    text-align: center;
    padding: 3rem 0;
    border-bottom: 2px solid #334155;
    margin-bottom: 2rem;
}

header h1 {
    color: #f8fafc;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.description {
    color: #94a3b8;
    font-size: 1.2rem;
}

.posts {
    display: grid;
    gap: 2rem;
}

.post {
    background: #1e293b;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #334155;
    transition: transform 0.3s, box-shadow 0.3s;
}

.post:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

.post-meta {
    color: #3b82f6;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.post h2 {
    margin: 0.5rem 0 1rem;
}

.post h2 a {
    color: #f8fafc;
    text-decoration: none;
    transition: color 0.3s;
}

.post h2 a:hover {
    color: #3b82f6;
}

.post-summary {
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.post-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: #334155;
    color: #3b82f6;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

.archive-section {
    background: #1e293b;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.archive-section h2 {
    color: #3b82f6;
    margin-bottom: 1rem;
}

.archive-list {
    list-style: none;
}

.archive-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #334155;
}

.archive-list a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.archive-list a:hover {
    color: #3b82f6;
}

footer {
    text-align: center;
    padding: 3rem 0;
    color: #64748b;
    border-top: 2px solid #334155;
    margin-top: 3rem;
}
