body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #f5f5f5;
    color: #222;
}

.header {
    display: flex;
    align-items: center;
    background: #1976d2;
    color: #fff;
    padding: 0.5rem 1rem;
}

.logo a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
}

.hamburger {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    margin-right: 1rem;
    cursor: pointer;
}


.side-menu {
    position: fixed;
    top: 0;
    left: -260px;
    width: 260px;
}


.side-menu.open {
    left: 0;
}

.side-menu ul {
    list-style: none;
    padding: 0;
}

.side-menu a {
    text-decoration: none;
    color: #1976d2;
}

.content {
    padding: 1rem;
    max-width: 960px;
    margin: 0 auto;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
}

.card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.card-image {
    background: #e3f2fd;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image span {
    font-size: 2.5rem;
    color: #1976d2;
    font-weight: 700;
}

.card-title {
    padding: 0.75rem;
    text-align: center;
    font-weight: 500;
}
