body {
    background-color: #0d0d0d;
    background-image: radial-gradient(#1a1a1a 1px, transparent 1px);
    background-size: 20px 20px;
    color: #e0e0e0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px; 
    line-height: 1.5;
    margin: 0;
    padding: 0;
}

a {
    color: #fffb00;
    text-decoration: none;
    transition: all 0.1s ease-in-out;
}

a:hover {
    color: #ff00ff;
    text-shadow: 0 0 8px #ff00ff;
}

#container {
    width: 720px;
    margin: 40px auto;
    background: #141414;
    padding: 40px;
    border: 1px solid #00f3ff;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2), inset 0 0 5px rgba(0, 243, 255, 0.1);
}

header h1 {
    margin: 0;
    padding: 0;
    border-bottom: 4px solid #ff00ff;
}

header h1 a {
    color: #00f3ff;
    text-decoration: none;
    font-weight: bold;
    font-size: 32px;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: -1px;
    font-style: italic;
    text-shadow: 2px 2px 0px #ff00ff;
}

header h1 a:hover {
    text-shadow: 0 0 12px #00f3ff;
    color: #00f3ff;
}

header nav {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #bcbcbc;
}

header nav a { 
    color: #fffb00;
}

header nav a.rss-link {
    color: #ff00ff;
}

article {
    margin-bottom: 50px;
    padding-bottom: 70px;
    position: relative;
}

article::after {
    content: "";
    position: absolute;
    bottom: 30px;
    left: 30%;
    right: 30%;
    border-bottom: 1px dashed #00f3ff;
}

article h2 a {
    font-family: Arial, Helvetica, sans-serif;
    color: #ff00ff;
    font-size: 22px;
    font-weight: bold;
    font-style: italic;
}

.post-meta {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    color: #00f3ff;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.entry-content {
    font-size: 13px;
    color: #e0e0e0;
}

.entry-content a {
    color: #fffb00;
    border-bottom: 1px solid #00f3ff;
}

.entry-content a:hover {
    background-color: #ff00ff;
    color: #000;
    text-shadow: none;
    border-bottom: 1px solid #ff00ff;
}

.post-entry-tags a {
    text-decoration: none !important;
    border: none !important;
}


.post-entry-tags {
    margin-top: 20px;
    margin-bottom: 5px;
    display: flex;
    flex-wrap: wrap;
}

.post-entry-tags span {
    background: #1a1a1a;
    border: none;
    color: #ff00ff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 6px !important;
    text-transform: uppercase;
    padding: 2px 4px;
    margin: 0 3px 3px 0;
    display: inline-flex !important;
    line-height: 1;
}

blockquote {
    margin: 20px 0;
    padding: 0 0 0 20px;
    border-left: 3px solid #fffb00;
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    color: #bcbcbc;
    background: rgba(255, 251, 0, 0.05);
}

.read-more a {
    color: #fffb00;
    border: 1px solid #fffb00;
    padding: 2px 8px;
    font-size: 12px;
    text-transform: uppercase;
}

.read-more a:hover {
    background: #fffb00;
    color: #000;
}

footer {
    font-family: Arial, Helvetica, sans-serif;
    border-top: 1px solid #1a1a1a;
    padding-top: 20px;
    font-size: 10px;
    color: #666;
    text-align: center;
}

footer a { color: #444; }
footer a:hover { color: #00f3ff; }

.archive-year {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 28px;
    font-style: italic;
    color: #00f3ff;
    border-bottom: 1px solid #1a1a1a;
    margin: 40px 0 20px 0;
}

.system-link {
    position: relative;
}

.system-link:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff00ff;
    color: #00f3ff;
    padding: 5px 10px;
    font-size: 11px;
    white-space: nowrap;
    border: 1px solid #00f3ff;
    box-shadow: 0 0 10px #ff00ff;
    z-index: 100;
}