/* Mental Labour Inspired Design */
body {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><rect width="20" height="20" fill="%23f0f0f0"/><rect x="0" y="0" width="10" height="10" fill="%23e8e8e8"/><rect x="10" y="10" width="10" height="10" fill="%23e8e8e8"/></svg>');
    background-repeat: repeat;
    font-family: 'Courier New', monospace;
    margin: 0;
    padding: 20px;
    color: #2a2a2a;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border: 2px solid #2a2a2a;
    box-shadow: 4px 4px 0px #2a2a2a;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 2px solid #2a2a2a;
    padding-bottom: 20px;
}

.logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: #2a2a2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(42, 42, 42, 0.3);
}

.site-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.site-subtitle {
    font-size: 1rem;
    margin-top: 10px;
    font-style: italic;
    color: #666;
}

/* Navigation */
.nav-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    padding: 20px;
    background: #f8f8f8;
    border: 1px solid #ddd;
}

.nav-item {
    text-decoration: none;
    color: #2a2a2a;
    font-weight: bold;
    padding: 10px 15px;
    border: 2px solid #2a2a2a;
    background: white;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.nav-item:hover {
    background: #2a2a2a;
    color: white;
    transform: translateY(-2px);
}

.nav-item.active {
    background: #2a2a2a;
    color: white;
}

/* Content Sections */
.content-section {
    margin-bottom: 40px;
    padding: 30px;
    border: 1px solid #ddd;
    background: #fafafa;
}

.section-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #2a2a2a;
    padding-bottom: 10px;
}

/* Updates/Blog Entries */
.update-entry {
    margin-bottom: 20px;
    padding: 15px;
    border-left: 4px solid #2a2a2a;
    background: white;
    border: 1px solid #eee;
}

.update-date {
    font-weight: bold;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.update-content {
    line-height: 1.6;
}

.update-content p {
    margin: 0 0 10px 0;
}

.update-content:last-child {
    margin-bottom: 0;
}

/* Reading/Watching Lists */
.media-list {
    list-style: none;
    padding: 0;
}

.media-item {
    margin-bottom: 15px;
    padding: 15px;
    background: white;
    border: 1px solid #ddd;
    border-left: 4px solid #2a2a2a;
}

.media-title {
    font-weight: bold;
    margin-bottom: 5px;
    color: #2a2a2a;
}

.media-author {
    color: #666;
    font-style: italic;
    margin-bottom: 5px;
}

.media-status {
    font-size: 0.85rem;
    color: #888;
    background: #f0f0f0;
    padding: 3px 8px;
    border-radius: 3px;
    display: inline-block;
}

.media-notes {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

/* Grid Layout for Lists */
.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #2a2a2a;
    font-size: 0.9rem;
    color: #666;
}

.footer-link {
    color: #2a2a2a;
    text-decoration: none;
    font-weight: bold;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 20px;
        margin: 10px;
    }
    
    .site-title {
        font-size: 2rem;
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-item {
        width: 200px;
        text-align: center;
    }
    
    .content-section {
        padding: 20px;
    }
    
    .grid-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }
    
    .container {
        padding: 15px;
    }
    
    .site-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .logo {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
}