    body {
      font-family: system-ui, -apple-system, sans-serif;
      line-height: 1.6;
      margin: 0;
      padding: 0;
      color: #333;
    }
    
    nav {
      background: #1a1a1a;
      padding: 1rem;
      position: sticky;
      top: 0;
      z-index: 100;
    }
    
    nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: center;
    }
    
    nav a {
      color: white;
      text-decoration: none;
      padding: 0.5rem 1rem;
      border-radius: 4px;
      transition: background 0.3s;
    }
    
    nav a:hover {
      background: #333;
    }
    
    header {
      background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
      color: white;
      padding: 4rem 2rem;
      text-align: center;
    }
    
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 2rem;
    }
    
    .style-section {
      margin-bottom: 4rem;
      scroll-margin-top: 4rem;
    }
    
    .examples {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }
    
    .example-card {
      border: 1px solid #ddd;
      border-radius: 8px;
      overflow: hidden;
      transition: transform 0.3s;
      background: white;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    .example-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }
    
    .example-card img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      cursor: pointer;
    }
    
    .example-card .content {
      padding: 1rem;
    }
    
    h1 { font-size: 2.5rem; margin: 0; }
    h2 { font-size: 2rem; color: #2c5282; border-bottom: 2px solid #2c5282; padding-bottom: 0.5rem; }
    h3 { font-size: 1.2rem; margin: 0; }
    p { margin: 0.5rem 0; }

    .copyright-notice {
      font-size: 0.8rem;
      color: #666;
      font-style: italic;
    }

    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.9);
      z-index: 1000;
      overflow: auto;
      padding: 2rem;
      box-sizing: border-box;
    }

    .modal.active {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .modal-content {
      max-width: 90%;
      max-height: 80vh;
      position: relative;
      text-align: center;
    }

    .modal-image {
      max-width: 100%;
      max-height: 70vh;
      object-fit: contain;
      margin-bottom: 1rem;
    }

    .modal-caption {
      color: white;
      font-size: 1.2rem;
      margin-top: 1rem;
        white-space: pre-line; 
    }

    .modal-close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      color: white;
      font-size: 2rem;
      cursor: pointer;
      background: none;
      border: none;
      padding: 0.5rem;
      z-index: 1001;
    }

    .modal-close:hover {
      color: #ddd;
    }
