body {
    background: radial-gradient(circle at 60% 40%, #e0eafc 0%, #cfdef3 100%);
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.container {
    background: #fff;
    padding: 2rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(60, 60, 60, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    color: #3a7bd5;
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(58, 123, 213, 0.08);
}

.images-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
    min-height: 340px;
    width: 90vw;
    max-width: 1100px;
}

.images-wrapper img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(58, 123, 213, 0.13);
    border: 3px solid #fff;
    transition: transform 0.25s, box-shadow 0.25s;
    background: #f6f9ff;
}

.images-wrapper img:hover {
    transform: scale(1.07) rotate(-2deg);
    box-shadow: 0 12px 32px rgba(58, 123, 213, 0.22);
    border-color: #3a7bd5;
}

button {
    background: #43c6ac;
    color: #fff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(67, 198, 172, 0.15);
    transition: background 0.2s;
}

button:hover {
    background: #34a69a;
}

button.load-more-images {
    background: linear-gradient(90deg, #3a7bd5 0%, #00d2ff 100%);
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(58, 123, 213, 0.13);
    transition: background 0.2s, transform 0.2s;
    margin-bottom: 2rem;
}

button.load-more-images:hover {
    background: linear-gradient(90deg, #00d2ff 0%, #3a7bd5 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(58, 123, 213, 0.22);
}