/* Minimal CSS - Text Art Focused */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

.main-container {
    min-height: 100vh;      /* Fill full viewport */
    box-sizing: border-box; /* Prevent padding overflow */
}

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

body {
    font-family: 'Consolas', 'Courier New', monospace;
    background: #000;
    color: #00ff00;
    line-height: 1.4;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

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

/* Text Art Styling */
.text-art {
    text-align: center;
    margin: 20px 0;
}

.text-art pre {
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 12px;
    color: #00ff00;
    line-height: 1.2;
    overflow-x: auto;
    margin: 0 auto;
    padding: 0;
    white-space: pre;
    word-wrap: break-word;
    text-align: center;
}

/* Basic Sections */
.hero {
    text-align: center;
    margin: 40px 0;
    padding: 20px;
    border: 1px solid #00ff00;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #00ff00;
}

.hero-text-art {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
}

.hero-text-art pre {
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 6px;
    color: #00ff00;
    line-height: 1.0;
    overflow-x: auto;
    margin: 0 auto;
    padding: 0;
    white-space: pre;
    word-wrap: break-word;
    max-width: 100%;
    display: block;
}

.description {
    font-size: 1rem;
    color: #00ff00;
}

/* Blog Posts */
.blog-posts {
    margin: 40px 0;
}

.blog-posts h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #00ff00;
    border-bottom: 1px solid #00ff00;
    padding-bottom: 10px;
}

.posts-list {
    list-style: none;
    padding: 0;
}

.posts-list li {
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #00ff00;
}

.posts-list li:last-child {
    border-bottom: none;
}

.posts-list a {
    color: #00ff00;
    text-decoration: none;
    font-size: 1.1rem;
}

.posts-list a:hover {
    text-decoration: underline;
}



.post-date {
    color: #00ff00;
    font-size: 0.9rem;
    font-style: italic;
    margin-left: 10px;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    border-top: 1px solid #00ff00;
    color: #00ff00;
}

/* Blog Page Styles */
.blog-content {
    border: 1px solid #00ff00;
    padding: 30px;
    margin: 20px 0;
}

.blog-header {
    text-align: center;
    margin-bottom: 30px;
}

.blog-title {
    font-size: 2rem;
    color: #00ff00;
    margin-bottom: 10px;
}

.blog-date {
    color: #00ff00;
    font-size: 1rem;
    font-style: italic;
}

.blog-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #00ff00;
}

.blog-text h2 {
    color: #00ff00;
    margin: 25px 0 15px 0;
    font-size: 1.5rem;
}

.blog-text p {
    margin-bottom: 15px;
}

.back-link {
    display: inline-block;
    margin: 20px 0;
    color: #00ff00;
    text-decoration: none;
    font-weight: bold;
}

.back-link:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
    body {
        padding: 10px;
    }
    
    .text-art pre {
        font-size: 8px;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .blog-title {
        font-size: 1.5rem;
    }
}
