﻿    body {
      font-family: Arial, Helvetica, sans-serif;
      background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%);
      text-align: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 15px;
      color: white;
      line-height: 1.6;
    }

    h1 {
      font-size: 1.8rem;
      color: white;
      margin-bottom: 0;
    }

    h2 {
      font-size: 1.2rem;
      margin: 0.5rem 0;
    }

    a {
      text-decoration: none;
      color: #00ffff;
      font-weight: bold;
    }

    a:hover {
      color: white;
      background-color: rgba(0,123,255,0.7);
    }

    .gallery-section {
      margin: 30px 0;
      padding: 20px;
      background: rgba(0,0,0,0.2);
      border-radius: 10px;
    }

    .gallery-button {
      background-color: #4CAF50;
      border: none;
      color: white;
      padding: 12px 24px;
      text-align: center;
      font-size: 16px;
      margin: 4px 2px;
      cursor: pointer;
      border-radius: 4px;
    }

    .gallery-button:hover {
      background-color: #45a049;
    }

    .image-gallery {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      margin: 20px auto;
    }

    .image-item {
      flex: 0 0 auto;
      max-width: 100%;
      height: auto;
      text-decoration: none;
      border: 2px solid transparent;
      border-radius: 4px;
      overflow: hidden;
      transition: transform 0.3s ease;
    }

    .image-item:hover {
      transform: scale(1.05);
    }

    .image-item img {
      width: auto;
      height: 150px;
      max-width: 300px;
      object-fit: cover;
      border-radius: 2px;
    }

    @media (min-width: 768px) {
      h1 {
        font-size: 2rem;
      }
      
      h2 {
        font-size: 1.4rem;
      }
      
      .image-item img {
        height: 200px;
      }
    }
