body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f7f6f3;
    color: #37352f;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.header {
    background-color: #ffffff;
    padding: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.container {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 1rem;
}

section {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

h1, h2, h3, h4 {
    margin-top: 0;
    font-weight: 600;
}

.project-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.project-card {
    background-color: #f9f9f9;
    border-radius: 6px;
    padding: 1rem;
    border: 1px solid #e0e0e0;
}

.project-card h3 {
    margin-bottom: 0.5rem;
}

.project-card a {
    color: #444;
    text-decoration: none;
    font-size: 0.9em;
}

.patch-notes .note-container {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 1rem;
}

.note-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

button {
    background-color: #4a90e2;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}