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

body {
    font-family: 'Courier New', monospace;
    background: #0a0a0a;
    color: #e0e0e0;
    min-height: 100vh;
    line-height: 1.7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Responsive container sizing */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
        padding: 0 4rem;
    }
}

@media (min-width: 1800px) {
    .container {
        max-width: 1600px;
        padding: 0 6rem;
    }
}

/* Navigation */
nav {
    background: #111;
    border-bottom: 1px solid #222;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 1400px) {
    .nav-container {
        max-width: 1400px;
        padding: 0 4rem;
    }
}

@media (min-width: 1800px) {
    .nav-container {
        max-width: 1600px;
        padding: 0 6rem;
    }
}

.logo {
    color: #00ff00;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
}

.nav-links a {
    color: #ccc;
    text-decoration: none;
    margin-left: 1.5rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #00ff00;
}

/* Layout */
.main-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
}

@media (min-width: 1400px) {
    .main-layout {
        grid-template-columns: 320px 1fr;
        gap: 4rem;
    }
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 80px;
    height: fit-content;
}

.sidebar h3 {
    color: #00ff00;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #333;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar li {
    margin-bottom: 0.75rem;
}

.sidebar a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.2s;
}

.sidebar a:hover {
    color: #00ff00;
    background: #111;
}

.sidebar .blog-num {
    color: #00ff00;
}

/* Mobile sidebar toggle */
.sidebar-toggle {
    display: none;
    background: #111;
    border: 1px solid #333;
    color: #00ff00;
    padding: 0.75rem 1rem;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.sidebar-toggle:hover {
    border-color: #00ff00;
}

/* Header */
header {
    padding: 3rem 0 2rem;
    border-bottom: 1px solid #222;
    margin-bottom: 2rem;
    text-align: center;
}

header h1 {
    font-size: 1.8rem;
    color: #00ff00;
    margin-bottom: 0.5rem;
}

.subtitle {
    color: #aaa;
    font-size: 1rem;
}

/* Posts */
.posts {
    padding-bottom: 3rem;
}

.post {
    background: #111;
    border: 1px solid #222;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.post:hover {
    border-color: #333;
}

.post-date {
    color: #999;
    font-size: 0.85rem;
}

.post-title {
    color: #00ff00;
    font-size: 1.4rem;
    margin: 0.5rem 0 1rem;
}

.post-content {
    color: #ccc;
    font-size: 1.05rem;
    line-height: 1.8;
}

@media (min-width: 1200px) {
    .post-content {
        font-size: 1.1rem;
    }
}

.post-content p {
    margin-bottom: 1.25rem;
}

.post-content ul {
    margin: 1rem 0 1rem 1.5rem;
}

.post-content li {
    margin-bottom: 0.5rem;
    color: #aaa;
}

/* Support Page Specific */
.wishlist-item {
    background: #111;
    border: 1px solid #222;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.wishlist-item h3 {
    color: #00ff00;
    margin-bottom: 0.5rem;
}

.wishlist-item .cost {
    color: #ff9900;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.wishlist-item p {
    color: #888;
    font-size: 0.95rem;
}

.wallet-section {
    background: #0f1f0f;
    border: 2px solid #00ff00;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
    text-align: center;
}

.wallet-section h2 {
    color: #00ff00;
    margin-bottom: 1rem;
}

.wallet-address {
    background: #000;
    padding: 1rem;
    font-family: monospace;
    word-break: break-all;
    margin: 1rem 0;
    border-radius: 4px;
    color: #00ff00;
}

.qr-code {
    margin: 1.5rem 0;
}

.qr-code img {
    max-width: 200px;
    border-radius: 8px;
}

/* Milestones */
.milestone {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: #111;
    border: 1px solid #222;
    margin-bottom: 0.5rem;
    border-radius: 4px;
}

.milestone.completed {
    border-color: #00ff00;
}

.milestone .status {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.milestone .text {
    color: #ccc;
}

.milestone.completed .text {
    color: #00ff00;
}

/* About Page */
.about-section {
    margin-bottom: 2rem;
}

.about-section h2 {
    color: #00ff00;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.about-section p {
    color: #ccc;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: #111;
    border-top: 1px solid #222;
    padding: 2rem 0;
    margin-top: 2rem;
}

.ethics {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #0a0a0a;
    border-radius: 4px;
}

.copyright {
    color: #444;
    font-size: 0.8rem;
    text-align: center;
}

/* Share Buttons */
.share-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1rem 0 1.5rem;
    padding: 0.75rem;
    background: #0a0a0a;
    border-radius: 4px;
    font-size: 0.85rem;
}

.share-buttons span {
    color: #ccc;
}

.share-buttons a, .share-buttons button {
    background: #222;
    border: 1px solid #333;
    color: #ccc;
    padding: 0.4rem 0.75rem;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    transition: all 0.2s;
}

.share-buttons a:hover, .share-buttons button:hover {
    border-color: #00ff00;
    color: #00ff00;
}

/* Single Post Page */
.single-post {
    max-width: 100%;
}

.single-post h1 {
    font-size: 1.8rem;
    color: #00ff00;
    margin: 0.5rem 0 0;
}

/* More Posts */
.more-posts {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #222;
}

.more-posts h3 {
    color: #00ff00;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.more-posts ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.more-posts li {
    margin-bottom: 0.5rem;
}

.more-posts a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.more-posts a:hover {
    color: #00ff00;
}

.back-link {
    color: #00ff00;
    text-decoration: none;
    font-size: 0.9rem;
}

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

/* Post title links */
.post-title a {
    color: #00ff00;
    text-decoration: none;
}

.post-title a:hover {
    text-decoration: underline;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0;
}

.pagination a, .pagination span {
    padding: 0.5rem 1rem;
    background: #111;
    border: 1px solid #333;
    color: #ccc;
    text-decoration: none;
    border-radius: 4px;
}

.pagination a:hover {
    border-color: #00ff00;
    color: #00ff00;
}

.pagination .active {
    border-color: #00ff00;
    color: #00ff00;
}

/* Mobile */
@media (max-width: 800px) {
    .main-layout {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: relative;
        top: 0;
    }
    
    .sidebar-toggle {
        display: block;
    }
    
    .sidebar ul {
        display: none;
        background: #0a0a0a;
        border: 1px solid #333;
        border-radius: 4px;
        padding: 0.5rem;
        margin-top: 0.5rem;
    }
    
    .sidebar.open ul {
        display: block;
    }
}

@media (max-width: 600px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links a {
        margin-left: 0;
        margin-right: 1rem;
    }
    
    header h1 {
        font-size: 1.4rem;
    }
}

/* Read Full Blog button - green accent */
.share-buttons .read-full {
    background: transparent;
    border: 1px solid #00ff9d;
    color: #00ff9d;
    padding: 0.4rem 0.75rem;
    margin-left: auto;
}

.share-buttons .read-full:hover {
    background: #00ff9d;
    color: #0a0a0a;
}
