/* Base dark theme */
body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
}

/* Article title styling with multiple animations */
.article-title {
    position: relative;
    color: #ffffff;
    font-size: 2em;
    text-decoration: none;
    animation: jitter 0.5s infinite, glow 2s ease-in-out infinite;
}

/* Glow effect using text-shadow */
@keyframes glow {
    0% {
        text-shadow: 
            0 0 5px rgba(255, 255, 255, 0),
            0 0 10px rgba(255, 255, 255, 0),
            0 0 15px rgba(255, 255, 255, 0),
            0 0 20px rgba(255, 255, 255, 0);
    }
    50% {
        text-shadow: 
            0 0 5px rgba(255, 255, 255, 0.5),
            0 0 10px rgba(255, 255, 255, 0.5),
            0 0 15px rgba(255, 255, 255, 0.5),
            0 0 20px rgba(255, 255, 255, 0.5);
    }
    100% {
        text-shadow: 
            0 0 5px rgba(255, 255, 255, 0),
            0 0 10px rgba(255, 255, 255, 0),
            0 0 15px rgba(255, 255, 255, 0),
            0 0 20px rgba(255, 255, 255, 0);
    }
}

/* Jitter animation */
@keyframes jitter {
    0% { transform: translate(0, 0); }
    25% { transform: translate(0.5px, 0.5px); }
    50% { transform: translate(-0.5px, -0.5px); }
    75% { transform: translate(-0.5px, 0.5px); }
    100% { transform: translate(0, 0); }
}

/* Links styling */
a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

/* Article containers */
.article {
    margin: 2em 0;
    padding: 1em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Article meta information */
.article-meta {
    color: #666;
    font-size: 0.9em;
    margin: 0.5em 0;
}

/* Container width and responsive design */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1em;
}

/* Additional text styles */
p {
    line-height: 1.6;
    margin: 1em 0;
}

/* Code blocks if needed */
pre, code {
    background: #1a1a1a;
    padding: 0.2em 0.4em;
    border-radius: 3px;
}