/* Reset and base styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    background-color: white;
    padding: 20px;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Header styles */
header {
    text-align: center;
    border-bottom: 2px dashed #ccc;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

h1 {
    color: #ff6b6b;
    font-size: 2.5em;
}

nav a {
    color: #666;
    text-decoration: none;
    margin: 0 10px;
}

nav a:hover {
    color: #ff6b6b;
    text-decoration: underline;
}

/* Content layout */
.content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

main {
    flex: 2;
    min-width: 300px;
}

aside {
    flex: 1;
    min-width: 200px;
}

/* Update sections */
.update {
    background-color: #f9f9f9;
    padding: 15px;
    margin-bottom: 20px;
    border-left: 3px solid #ff6b6b;
}

.date {
    color: #666;
    font-size: 0.9em;
    font-style: italic;
}

/* Sidebar styles */
.sidebar-section {
    background-color: #f9f9f9;
    padding: 15px;
    margin-bottom: 20px;
}

.avatar {
    display: block;
    margin: 10px auto;
    max-width: 150px;
    border: 2px solid #ddd;
}

/* Footer styles */
footer {
    text-align: center;
    border-top: 2px dashed #ccc;
    padding-top: 20px;
    margin-top: 20px;
    font-size: 0.9em;
    color: #666;
}

footer a {
    color: #666;
}

/* Retro touches */
h1, h2, h3 {
    font-family: 'Comic Sans MS', cursive, sans-serif;
}

/* Add these if you want the visitor counter */
.visitor-counter {
    font-family: 'Courier New', monospace;
    background: #000;
    color: #0f0;
    padding: 5px 10px;
    display: inline-block;
}