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

body {
    font-family: 'Courier New', 'Fixedsys', monospace;
    background-color: #000000;
    background-image: 
        repeating-linear-gradient(0deg, rgba(0, 255, 0, 0.03), rgba(0, 255, 0, 0.03) 1px, transparent 1px, transparent 2px),
        repeating-linear-gradient(90deg, rgba(0, 255, 0, 0.03), rgba(0, 255, 0, 0.03) 1px, transparent 1px, transparent 2px);
    background-size: 2px 2px;
    color: #aaa;
    line-height: 1.6;
}

h2 {
  color: #00FFFF;
}


/* ================================================
   2. LAYOUT - CONTAINER
   ================================================ */
.container {
    max-width: 1400px;
    margin: 20px auto;
    background: #0a0a0a;
    border: 2px solid #00FFFF;
    box-shadow: 
        0 0 20px rgba(0, 255, 255, 0.3), 
        0 0 40px rgba(255, 0, 255, 0.2),
        inset 0 0 20px rgba(0, 255, 255, 0.1);
}

/* Three Column Layout */
.main-content {
    display: grid;
    grid-template-columns: 250px 1fr 250px;
    gap: 20px;
    padding: 20px;
    background: url('/images/stars3.gif');
    background-attachment: fixed;
}

@media (max-width: 1200px) {
    .main-content {
        grid-template-columns: 200px 1fr 200px;
    }
}

@media (max-width: 968px) {
    .main-content {
        grid-template-columns: 1fr;
    }

    .left-sidebar,
    .right-sidebar {
        display: none;
    }
}


/* ================================================
   3. ANIMATIONS & EFFECTS
   ================================================ */
@keyframes glitch {
    0%   { transform: translate(0); }
    20%  { transform: translate(-2px, 2px); }
    40%  { transform: translate(-2px, -2px); }
    60%  { transform: translate(2px, 2px); }
    80%  { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

@keyframes shine {
    0%   { left: -100%; }
    100% { left: 100%; }
}

@keyframes blink {
    0%, 50%   { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.blink {
    animation: blink 1s infinite;
}

/* Scanline overlay */
.scanline {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15),
        rgba(0, 0, 0, 0.15) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    z-index: 9999;
}


/* ================================================
   4. HEADER
   ================================================ */
.header-banner {
    background: linear-gradient(to right, #00FFFF, #FF00FF, #00FFFF, #FF00FF, #00FFFF);
    padding: 2px;
    position: relative;
    overflow: hidden;
}

.header-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

header {
    background: #000000;
    padding: 20px;
    text-align: center;
    border-bottom: 2px solid #00FFFF;
    position: relative;
}

h1 {
    font-size: 2.8em;
    color: #00FFFF;
    text-shadow: 
        0 0 10px #00FFFF,
        0 0 20px #00FFFF,
        2px 2px 0 #FF00FF;
    margin-bottom: 10px;
    font-family: 'Courier New', monospace;
    letter-spacing: 3px;
}

h1:hover {
    animation: glitch 0.3s;
}

.welcome-text {
    font-size: 1.1em;
    color: #FF00FF;
    text-shadow: 0 0 6px #FF00FF;
    margin: 10px 0;
    font-family: 'Courier New', monospace;
}

.welcome-text::before {
    content: '> ';
    color: #00FFFF;
}


/* ================================================
   5. NAVIGATION
   ================================================ */
nav {
    background: #000000;
    padding: 15px;
    text-align: center;
    border-top: 1px solid #00FFFF;
    border-bottom: 1px solid #00FFFF;
}

nav a {
    display: inline-block;
    color: #00FFFF;
    text-decoration: none;
    margin: 0 10px;
    font-weight: bold;
    font-size: 1em;
    padding: 6px 14px;
    border-radius: 4px;
    transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

nav a:hover,
nav a.active {
    background-color: #FF00FF;
    color: #000;
    box-shadow: 0 0 10px #FF00FF;
}


/* ================================================
   6. SIDEBARS & WIDGETS
   ================================================ */
.left-sidebar,
.right-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.widget {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #333;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

.widget h3 {
    color: #FF00FF;
    text-shadow: 0 0 6px #FF00FF;
    font-size: 0.95em;
    margin-bottom: 12px;
    text-align: left;
    text-transform: none;
    letter-spacing: 1px;
    border-bottom: none;
    padding-bottom: 0;
}

.widget-content {
    color: #aaa;
    font-size: 0.95em;
    line-height: 1.8;
}

/* Visitor Counter */
.counter {
    background: #000000;
    color: #00FFFF;
    padding: 10px;
    text-align: center;
    font-family: 'Courier New', monospace;
}

.counter-digits {
    font-size: 1.3em;
    letter-spacing: 2px;
    text-shadow: 0 0 5px #00FFFF;
}


/* ================================================
   7. CENTER CONTENT AREA - HOMEPAGE
   ================================================ */
.center-content {
    background: #000000;
}

.center-content p {
    color: #aaa;
}

/* Welcome Panel */
.welcome-panel {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #333;
    padding: 25px;
    margin-bottom: 30px;
}

.welcome-panel h2 {
    color: #00FFFF;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.home-currently {
  padding: 25px; 
  border: 1px solid #333;
}

/* Warning Banner */
.warning {
    text-align: center;
    padding: 10px;
    background: #000000;
    border: 2px solid #FF0000;
    margin: 0 0 20px 0;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.warning-text {
    color: #FF0000;
    font-weight: bold;
    font-size: 0.9em;
    text-shadow: 0 0 5px #FF0000;
}

/* Sections */
.section {
    margin-bottom: 30px;
    padding: 20px;
    background: transparent;
    border: 1px solid #333;
}

.section p {
    color: #aaa;
    line-height: 1.8;
    font-size: 1em;
}

.section-title {
    background: transparent;
    color: #00FFFF;
    padding: 8px;
    font-size: 2em;
    margin: -20px -20px 15px -20px;
    text-align: center;
    border-bottom: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Section icon prefixes */
.section.retro    .section-title::before { content: '📼 '; margin-right: 8px; }
.section.sys      .section-title::before { content: '⚙️ '; margin-right: 8px; }
.section.game     .section-title::before { content: '🎮 '; margin-right: 8px; }
.section.security .section-title::before { content: '🔓 '; margin-right: 8px; }

/* System status line */
.system-line {
    color: #00ff88;
    font-size: 0.9em;
}


/* ================================================
   8. HOMEPAGE POSTS
   ================================================ */
.post {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #333333;
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.post:hover {
    border-color: #00FFFF;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.post-date {
    color: #666666;
    font-size: 0.85em;
    margin-bottom: 8px;
}

.post h4 {
    font-size: 1.1em;
    margin-bottom: 8px;
}

.post h4 a {
    color: #FF00FF;
    text-shadow: 0 0 6px #FF00FF;
    text-decoration: none;
}

.post h4 a:hover {
    color: #00FFFF;
    text-decoration: underline;
}

.post p {
    color: #999999;
    margin: 10px 0;
    font-size: 0.95em;
}

/* Tags */
.tags {
    margin: 8px 0;
}

.tag {
    display: inline-block;
    background: transparent;
    border: 1px solid #00FFFF;
    padding: 2px 8px;
    margin-right: 5px;
    font-size: 0.75em;
    color: #00FFFF;
}

/* Read More button */
.read-more {
    display: inline-block;
    background: transparent;
    border: 1px solid #FF00FF;
    padding: 5px 15px;
    color: #FF00FF;
    text-shadow: 0 0 6px #FF00FF;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    font-size: 0.85em;
}

.read-more::after {
    content: ' →';
}

.read-more:hover {
    background: #FF00FF;
    color: #000000;
    box-shadow: 0 0 10px #FF00FF;
}

/* ================================================
   9. LINKS & NAVIGATION ELEMENTS
   ================================================ */

/* Cool Links list */
.cool-links {
    list-style: none;
    padding: 0;
}

.cool-links li {
    margin: 8px 0;
}

.cool-links a {
    color: #00FFFF;
    text-decoration: none;
    font-size: 0.9em;
}

.cool-links a::before {
    content: '> ';
    color: #FF00FF;
    text-shadow: 0 0 6px #FF00FF;
}

.cool-links a:hover {
    color: #FF00FF;
    text-shadow: 0 0 6px #FF00FF;
    text-decoration: underline;
}

/* Quick Links */
.quick-link {
    display: block;
    padding: 8px;
    margin: 5px 0;
    background: #0a0a0a;
    border: 1px solid #333;
    color: #00FFFF;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9em;
}

.quick-link:hover {
    border-color: #FF00FF;
    background: #000;
    color: #FF00FF;
    text-shadow: 0 0 6px #FF00FF;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.2);
}


/* ================================================
   10. MISC COMPONENTS
   ================================================ */

/* Stats */
.stat-line {
    padding: 5px 0;
    border-bottom: 1px dotted #333333;
    display: flex;
    justify-content: space-between;
    font-size: 0.9em;
}

.stat-line:last-child {
    border-bottom: none;
}

/* Info Box */
.info-box {
    padding: 10px;
    margin-bottom: 15px;
    font-size: 0.9em;
    color: #00FFFF;
}

.info-box strong {
    color: #FF00FF;
    text-shadow: 0 0 6px #FF00FF;
}

/* Message Box */
.message-box {
    background: #000000;
    border: 1px solid #FF00FF;
    padding: 10px;
    margin: 10px 0;
    font-style: italic;
    color: #00FFFF;
    font-size: 0.9em;
}

.message-box::before {
    content: '>> ';
    color: #FF00FF;
    text-shadow: 0 0 6px #FF00FF;
    font-weight: bold;
}

/* ASCII Art */
.ascii-art {
    font-family: 'Courier New', monospace;
    font-size: 0.7em;
    color: #00FFFF;
    white-space: pre;
    line-height: 1.2;
    text-align: center;
    margin: 10px 0;
}

/* Badges */
.new-badge {
    background: #FF0000;
    color: #000000;
    padding: 2px 6px;
    font-size: 0.7em;
    font-weight: bold;
    margin-left: 5px;
    box-shadow: 0 0 5px #FF0000;
}

.updated-badge {
    background: #00FFFF;
    color: #000000;
    padding: 2px 6px;
    font-size: 0.7em;
    font-weight: bold;
    margin-left: 5px;
    box-shadow: 0 0 5px #00FFFF;
}

/* Disclaimer */
.disclaimer {
    margin-top: 10px;
    font-size: 0.8em;
    color: #666666;
    font-style: italic;
}


/* ================================================
   11. LIST PAGE - MINIMALIST HACKER STYLE
   ================================================ */
.list-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* List Header */
.list-header {
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
}

.list-header .section-title {
    color: #00FFFF;
    font-size: 2em;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.list-desc {
    color: #aaa;
    font-size: 1em;
    line-height: 1.6;
    max-width: 700px;
}

/* Minimalist Post List */
.post-list-minimal {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

/* Individual Post - Minimalist */
.post-minimal {
    position: relative;
    padding-left: 0;
    transition: all 0.2s;
}

.post-minimal:hover {
    transform: translateX(5px);
}

/* Date with comment style */
.post-date-minimal {
    color: #666;
    font-size: 0.85em;
    font-family: 'Courier New', monospace;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.post-minimal:hover .post-date-minimal {
    color: #999;
}

/* Title with arrow */
.post-title-minimal {
    margin: 0 0 8px 0;
    font-size: 1.3em;
    line-height: 1.4;
}

.post-title-minimal a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.2s;
    font-weight: normal;
}

.post-title-minimal a:hover {
    color: #00FFFF;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.4);
}

/* Tags with hashtags */
.post-tags-minimal {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-left: 15px;
}

.tag-minimal {
    color: #888;
    font-size: 0.85em;
    font-family: 'Courier New', monospace;
    transition: all 0.2s;
}

.post-minimal:hover .tag-minimal {
    color: #FF00FF;
    text-shadow: 0 0 6px rgba(255, 0, 255, 0.3);
}

/* Empty State */
.post-list-minimal:empty::after {
    content: '// No posts found';
    display: block;
    color: #666;
    padding: 40px;
    font-style: italic;
    font-family: 'Courier New', monospace;
}


/* ================================================
   12. SINGLE POST PAGE - MINIMALIST HACKER STYLE
   ================================================ */
.single-post {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header */
.single-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #333;
}

/* Meta info (date and tags) */
.post-meta-minimal {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.meta-date {
    color: #666;
    font-size: 0.9em;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

.meta-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.meta-tags .tag-minimal {
    color: #888;
    font-size: 0.85em;
    font-family: 'Courier New', monospace;
    transition: all 0.2s;
}

.meta-tags .tag-minimal:hover {
    color: #FF00FF;
    text-shadow: 0 0 6px rgba(255, 0, 255, 0.4);
    cursor: default;
}

/* Title */
.single-title {
    font-size: 2.2em;
    line-height: 1.3;
    color: #00FFFF;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    margin: 0;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Content Area */
.single-content {
    color: #ccc;
    font-size: 1.05em;
    line-height: 1.8;
}

.single-content h2 {
    color: #00FFFF;
    font-size: 1.6em;
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.2);
}

.single-content 3 {
    color: #ddd;
    font-size: 1.3em;
    margin: 30px 0 15px 0;
}

.single-content h4 {
    color: #bbb;
    font-size: 1.1em;
    margin: 25px 0 12px 0;
}

.single-content p {
    margin-bottom: 20px;
    color: #aaa;
}

.single-content a {
    color: #00FFFF;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
    transition: all 0.2s;
}

.single-content a:hover {
    color: #FF00FF;
    border-bottom-color: #FF00FF;
    text-shadow: 0 0 6px rgba(255, 0, 255, 0.3);
}

.single-content ul,
.single-content ol {
    margin: 20px 0;
    padding-left: 30px;
    color: #aaa;
}

.single-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.single-content ul li::marker {
    color: #00FFFF;
}

.single-content ol li::marker {
    color: #00FFFF;
}

.single-content blockquote {
    border-left: 3px solid #00FFFF;
    padding-left: 20px;
    margin: 30px 0;
    color: #999;
    font-style: italic;
    background: rgba(0, 255, 255, 0.03);
    padding: 15px 20px;
}

.single-content code {
    background: #0a0a0a;
    color: #00FFFF;
    padding: 2px 8px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    border: 1px solid #222;
}

.single-content pre {
    background: #0a0a0a;
    border: 1px solid #333;
    padding: 20px;
    overflow-x: auto;
    margin: 25px 0;
    border-radius: 4px;
}

.single-content pre code {
    background: transparent;
    border: none;
    padding: 0;
    color: #ddd;
}

.single-content img {
    max-width: 100%;
    height: auto;
    margin: 30px 0;
    border: 1px solid #333;
    display: block;
}

.single-content hr {
    border: none;
    border-top: 1px solid #333;
    margin: 40px 0;
}

/* Post Navigation */
.post-navigation {
    display: flex;
    gap: 20px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #333;
}

.nav-prev,
.nav-next {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    background: rgba(17, 17, 17, 0.8);
    border: 1px solid #333;
    text-decoration: none;
    transition: all 0.3s;
}

.nav-next {
    text-align: right;
    align-items: flex-end;
}

.nav-prev:hover,
.nav-next:hover {
    border-color: #00FFFF;
    background: rgba(20, 20, 20, 0.9);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.15);
}

.nav-label {
    color: #666;
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Courier New', monospace;
}

.nav-title {
    color: #ddd;
    font-size: 1em;
    transition: all 0.2s;
}

.nav-prev:hover .nav-title,
.nav-next:hover .nav-title {
    color: #00FFFF;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.3);
}

.nav-prev:hover .nav-label,
.nav-next:hover .nav-label {
    color: #999;
}


/* ================================================
   13. FOOTER
   ================================================ */
footer {
    background: #000000;
    padding: 20px;
    text-align: center;
    border-top: 2px solid #00FFFF;
}

.footer-text {
    color: #00FFFF;
    font-size: 0.9em;
}

.footer-text a {
    color: #FF00FF;
    text-shadow: 0 0 6px #FF00FF;
    text-decoration: none;
}

.footer-text a:hover {
    text-decoration: underline;
}


/* ================================================
   14. RESPONSIVE DESIGN
   ================================================ */

/* List Page Responsive */
@media (max-width: 768px) {
    .list-page {
        padding: 20px 15px;
    }
    
    .list-header .section-title {
        font-size: 1.5em;
    }
    
    .post-title-minimal {
        font-size: 1.1em;
    }
    
    .post-tags-minimal {
        margin-left: 10px;
    }
}

/* Single Post Responsive */
@media (max-width: 768px) {
    .single-post {
        padding: 20px 15px;
    }
    
    .single-title {
        font-size: 1.6em;
    }
    
    .single-content {
        font-size: 1em;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-next {
        text-align: left;
        align-items: flex-start;
    }
}

.label {
  color: #FF00FF;
}

.list-content h2 {
  color: #00ffff;
  margin-top: 28px;
}


