:root {
    --bg-deep: #08020d;    
    --text-main: #dfcbe6;     
    --text-muted: #88749c;   
    --neon-purple: #d121ff;  
    --neon-dim: #4a1066;    
    --glow-strong: 0 0 10px rgba(209, 33, 255, 0.8), 0 0 20px rgba(209, 33, 255, 0.5);
    --glow-subtle: 0 0 5px rgba(209, 33, 255, 0.4);
}

.neon-post-container {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    background-color: var(--bg-deep);
    color: var(--text-main);
    font-family: 'Courier New', Courier, monospace; 
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--neon-dim);
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.9);
    overflow-y: auto;
}

.post-header {
    margin-bottom: 2rem;
}

.neon-title {
    color: #fff;
    text-shadow: var(--glow-strong);
    margin: 0 0 0.5rem 0;
    font-family: 'Trebuchet MS', sans-serif;
    letter-spacing: 1px;
    font-size: 2.5rem;
    line-height: 1.2;
}

.post-meta {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-family: 'Trebuchet MS', sans-serif;
}

.header-divider {
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, var(--neon-purple) 0%, transparent 100%);
    margin-top: 1.5rem;
    box-shadow: var(--glow-subtle);
}

.post-body {
    font-size: 1.05rem;
}

.post-body p {
    line-height: 1.8; 
    margin: 0; 
}

.neon-heading {
    color: var(--neon-purple);
    text-shadow: var(--glow-subtle);
    font-family: 'Trebuchet MS', sans-serif;
    margin: 0;
    font-size: 1.5rem;
}

.neon-quote {
    margin: 0;
    padding: 1.2rem 2rem;
    background: linear-gradient(90deg, rgba(209,33,255,0.08) 0%, transparent 100%);
    border-left: 3px solid var(--neon-purple);
    font-style: italic;
    color: #f2e6ff;
    font-size: 1.2rem;
    line-height: 1.6;
    text-shadow: 0 0 4px rgba(209, 33, 255, 0.4);
}

.post-footer {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px dashed var(--neon-dim);
}

.post-tags {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(209, 33, 255, 0.1);
    color: var(--neon-purple);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    border: 1px solid var(--neon-dim);
    transition: all 0.3s ease;
    cursor: default;
}

.tag:hover {
    background: var(--neon-purple);
    color: var(--bg-deep);
    box-shadow: var(--glow-subtle);
}

.spacer-sm { height: 0.75rem; width: 100%; }
.spacer-md { height: 1.5rem; width: 100%; }
.spacer-lg { height: 2.5rem; width: 100%; }