body {
    margin: 0;
    font-family: sans-serif;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    padding: 16px;
}

.gallery img {
    width: 100%;
    height: auto;
    cursor: pointer;
    border-radius: 4px;
    transition: transform 0.2s ease;
}

.gallery img:hover {
    transform: scale(1.02);
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
    z-index: 1000;
}

.modal img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.modal.active {
    display: flex;
}
