/* Neo-Brutalist Style 1: Bold Color Blocks */
:root {
    --primary: #000000;
    --bg: #ffffff;
    --accent-1: #ff6b9d;
    --accent-2: #00d9ff;
    --accent-3: #ffeb3b;
    --text-gray: #666666;
}

body {
    font-family: 'Courier New', Courier, monospace;
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 20px;
    background: var(--bg);
    color: var(--primary);
    line-height: 1.6;
    font-size: 13px;
}

a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 3px solid var(--accent-1);
    padding-bottom: 2px;
    transition: all 0.2s;
}

a:hover {
    background: var(--accent-1);
}

h1 {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    margin: 0 0 2rem 0;
    padding: 0 0 0.5rem 0;
    background: transparent;
    border: none;
    border-bottom: 3px solid var(--primary);
    box-shadow: none;
}

h2 {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 2rem 0 1rem 0;
    padding-left: 1rem;
    border-left: 8px solid var(--accent-3);
}

/* Navigation */
nav {
    display: flex;
    gap: 0;
    margin-bottom: 3rem;
    font-size: 13px;
}

nav a {
    padding: 0.75rem 1.5rem;
    border: 3px solid var(--primary);
    border-right: none;
    background: var(--bg);
    margin: 0;
}

nav a:first-child {
    border-left: 3px solid var(--primary);
}

nav a:last-child {
    border-right: 3px solid var(--primary);
}

nav a:hover {
    background: var(--accent-3);
    z-index: 10;
}

.nav-divider {
    display: none;
}

/* Home page */
.home-page img {
    max-width: 100%;
    height: auto;
    border: 4px solid var(--primary);
    box-shadow: 6px 6px 0 var(--accent-1);
}

/* About page */
.about-page img {
    max-width: 100%;
    height: auto;
    border: 4px solid var(--primary);
    box-shadow: 6px 6px 0 var(--accent-1);
}

/* Post cards with color blocking */
.posts-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.post-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border: 3px solid var(--primary);
    background: var(--bg);
    position: relative;
}

.post-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 8px;
    background: var(--accent-1);
}

.post-item:nth-child(2n)::before {
    background: var(--accent-2);
}

.post-item:nth-child(3n)::before {
    background: var(--accent-3);
}

.post-title {
    color: var(--primary);
    font-weight: 700;
    border: none;
}

.post-date {
    color: var(--text-gray);
    font-size: 0.85rem;
    padding: 0.25rem 0.75rem;
    background: #f5f5f5;
    border: 2px solid var(--primary);
}

/* Individual post page */
.post-header {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--accent-3);
    border: 4px solid var(--primary);
    box-shadow: 10px 10px 0 var(--primary);
}

.post-header h1 {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.post-header .post-meta {
    display: flex;
    gap: 2rem;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 700;
}

.post-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 2rem 0;
    border: 4px solid var(--primary);
    box-shadow: 8px 8px 0 var(--accent-2);
}

.post-footer {
    padding: 1.5rem;
    border: 3px solid var(--primary);
    background: #f5f5f5;
    margin-top: 3rem;
}

/* Contact & other pages */
.contact-box,
.about-page,
.now-container {
    padding: 2rem;
    border: 4px solid var(--primary);
    background: var(--bg);
}

/* Book/game lists */
.book-item,
.game-item {
    padding: 1rem;
    padding-left: 1.5rem;
    border-left: 6px solid var(--accent-1);
    background: #f9f9f9;
    border-top: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
}

.book-item:nth-child(2n),
.game-item:nth-child(2n) {
    border-left-color: var(--accent-2);
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding: 20px 15px;
    }

    h1 {
        font-size: 1.5rem;
        padding: 0.75rem;
        box-shadow: 4px 4px 0 var(--primary);
    }

    nav {
        flex-direction: column;
    }

    nav a {
        border: 3px solid var(--primary);
        border-top: none;
    }

    nav a:first-child {
        border-top: 3px solid var(--primary);
    }
}
