* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    color: #e0e0e0;
    font-family: 'Courier New', monospace;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.blog-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px 0;
    border-bottom: 2px solid #333;
}

.blog-header h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    text-shadow: 0 0 10px #ff0000;
    letter-spacing: 2px;
}

.title-link, .title-link a {
    color: #ff0000 !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.title-link:hover {
    color: #ff6666 !important;
    text-shadow: 0 0 15px #ff0000;
}

.tagline {
    color: #888;
    font-size: 1rem;
    margin-bottom: 20px;
    font-style: italic;
}

.disclaimer {
    background: #111;
    border: 1px solid #333;
    border-radius: 5px;
    padding: 15px;
    margin-top: 20px;
}

.disclaimer small {
    display: block;
    color: #999;
    font-size: 0.8rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.disclaimer small:last-child {
    margin-bottom: 0;
}

.onion-link {
    color: #ff4444;
    text-decoration: none;
}

.onion-link:hover {
    color: #ff6666;
}

.blog-content {
    display: grid;
    gap: 30px;
}

.post-preview {
    background: linear-gradient(145deg, #1a1a1a, #222);
    border: 1px solid #333;
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.post-preview:hover {
    border-color: #ff4444;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 68, 68, 0.1);
}

.post-title, .post-title a {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #ff0000 !important;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.post-title:hover, .post-title a:hover {
    color: #ff6666 !important;
}

.post-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.post-excerpt {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 15px;
}

.read-more {
    color: #ff4444;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.read-more:hover {
    border-bottom-color: #ff4444;
}

.post-content {
    background: linear-gradient(145deg, #1a1a1a, #222);
    border: 1px solid #333;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.post-content h1 {
    color: #ff4444;
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.post-content h2 {
    color: #ff6666;
    font-size: 1.5rem;
    margin: 30px 0 15px 0;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
}

.post-content h3 {
    color: #ff8888;
    font-size: 1.2rem;
    margin: 25px 0 10px 0;
}

.post-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #ddd;
}

.post-content ul, .post-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

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

.post-content strong {
    color: #ff6666;
}

.post-content code {
    background: #0a0a0a;
    color: #00ff00;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
}

.post-content pre {
    background: #0a0a0a;
    color: #00ff00;
    padding: 15px;
    border-radius: 5px;
    overflow-x: auto;
    margin: 20px 0;
    border: 1px solid #333;
}

.post-content blockquote {
    border-left: 4px solid #ff4444;
    padding-left: 20px;
    margin: 20px 0;
    color: #bbb;
    font-style: italic;
}

.post-content a {
    color: #ff4444 !important;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.post-content a:hover {
    color: #ff8888 !important;
    border-bottom-color: #ff4444;
}

.back-link {
    display: inline-block;
    color: #ff4444;
    text-decoration: none;
    margin-bottom: 20px;
    padding: 8px 15px;
    border: 1px solid #ff4444;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.back-link:hover {
    background: #ff4444;
    color: #000;
}

.back-link::before {
    content: "← ";
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .blog-header h1 {
        font-size: 1.8rem;
    }
    
    .post-content {
        padding: 25px;
    }
    
    .post-content h1 {
        font-size: 1.6rem;
    }
}