body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: #fdf6f0;
  }
  
  .gallery {
    columns: 3 250px;
    column-gap: 1rem;
    padding: 1rem;
  }
  
  .gallery img {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
    cursor: pointer;
    break-inside: avoid;
  }
  
  .gallery img:hover {
    transform: scale(1.03);
  }
  
  /* Lightbox styles */
  .lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  .lightbox img {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 8px;
  }
  
  .lightbox .close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 40px;
    cursor: pointer;
  }
  
  .lightbox .prev, .lightbox .next {
    position: absolute;
    top: 50%;
    color: white;
    font-size: 40px;
    cursor: pointer;
    user-select: none;
    transform: translateY(-50%);
    padding: 10px;
  }
  
  .lightbox .prev {
    left: 20px;
  }
  
  .lightbox .next {
    right: 20px;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .gallery {
        columns: 2 150px;
    }
  }
  
  @media (max-width: 480px) {
    .gallery {
        columns: 1 100%;
    }
  }
  
  .cute-title {
    text-align: center;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    color: #8A2BE2;
    margin-top: 20px;
    font-size: 2.5em;
  }
  
  .message {
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 8px;
    font-family: 'Georgia', serif;
    color: #333;
    margin: 20px auto;
    font-size: 1.2em;
    max-width: 600px;
    text-align: left;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  