 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
      background: #fff;
    }

    .logo {
      width: 50px;
      height: 50px;
      margin-top: -3px;
    }

    .name {
      font-family: Arial;
    }

    .navigation {
      background-color: #ddd;
      width: 100%;
      padding: 2px 5px;
      font-family: Arial;
    }

    .navigation a {
      color: #333;
      margin-right: 10px;
      text-decoration: none;
    }

    .navigation a:hover {
      text-decoration: none;
    }

    .site {
      display: flex;
      align-items: center;
      margin: 10px 0 5px 15px;
    }

    .hr {
      border: none;
      background-color: #ccc;
      height: 2px;
      width: 100%;
      margin: 5px 0;
    }

    .info {
      background-color: #ffc;
      padding: 10px;
      border: 1px solid #cc9;
      margin: 15px 20px;
    }

    .OS {
      display: flex;
      align-items: center;
      margin: 15px 20px;
      gap: 10px;
    }

    .OS img {
      width: 40px;
      height: 40px;
    }

    .OS h2 {
      font-family: Arial;
      font-size: 1.5rem;
    }

    .web {
      margin: 15px 20px;
    }

    .table {
      font-family: 'Courier New', Courier, monospace;
      overflow-x: auto;
    }

    table {
      border-collapse: collapse;
      width: 100%;
      min-width: 500px;
      max-width: 900px;
    }

    th {
      padding: 8px 5px;
      text-align: left;
      border: 1px solid #aaa;
      background-color: #0078d7;
    }

    td {
      padding: 8px 7px;
      border: 1px solid #ccc;
      background-color: whitesmoke;
    }

    tr:hover {
      background-color: #ffd;
    }

    .iso {
      margin: 15px 20px;
    }

    .opis {
      font-family: 'Courier New', Courier, monospace;
      background: #f9f9f9;
      padding: 12px;
      margin: 10px 0 20px 0;
      border-left: 3px solid #cc9;
      font-size: 0.85rem;
      overflow-x: auto;
    }

    h4 {
      background-color: #ffa;
      display: inline-block;
      padding: 5px 10px;
      font-size: 1rem;
      margin: 15px 0 5px 0;
      width: 40%;
    }

    a {
      text-decoration: none;
      color: #0066cc;
    }

    a:hover {
      text-decoration: none;
    }

    .copy-btn {
      background: none;
      border: 1px solid #aaa;
      padding: 2px 6px;
      font-family: monospace;
      font-size: 0.65rem;
      cursor: pointer;
      margin-left: 8px;
      border-radius: 3px;
      color: #333;
    }

    .copy-btn:hover {
      background: #eee;
    }

    .hash-item {
      margin: 4px 0;
    }

    .screenshots {
      margin: 20px;
      border: 1px solid #ccc;
      background: #fff;
    }

    .screenshots h3 {
      background: #eee;
      padding: 8px 12px;
      margin: 0;
      font-family: Arial;
      font-size: 14px;
      border-bottom: 1px solid #ccc;
    }

    .screenshots-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      padding: 16px;
    }

    .mct-row {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .mct-icon {
      height: 24px;
      width: auto;
      vertical-align: middle;
    }

    .screenshot {
      flex: 1 1 200px;
      border: 1px solid #ddd;
      background: #fafafa;
      text-align: center;
      padding: 10px;
      cursor: pointer;
    }

    .screenshot img {
      max-width: 100%;
      height: auto;
      background: #e0e0e0;
    }

    .screenshot span {
      display: block;
      margin-top: 8px;
      font-family: 'Courier New', Courier, monospace;
      font-size: 12px;
      color: #555;
    }

    .hash-cell {
      cursor: pointer;
      font-family: 'Courier New', Courier, monospace;
    }

    .hash-cell:hover {
      text-decoration: none;
    }

    .footer {
      padding-top: 10px;
      border-top: 1px solid #ccc;
      font-size: 12px;
      color: #777;
      text-align: center;
      margin-top: 30px;
      background-color: #ddd;
      padding-bottom: 4px;
    }

    .footer a {
      color: #777;
      text-decoration: underline;
    }

    @media (max-width: 800px) {
      .site {
        flex-direction: column;
        text-align: center;
        margin: 10px 0;
      }

      .down {
        background-color: #cc9;
        text-decoration: none;
        color: #333;
        padding: 3px;
      }
      .logo {
        margin-bottom: 5px;
      }
      .name {
        font-size: 22px;
      }
      .info {
        margin: 10px;
        font-size: 12px;
        text-align: center;
      }
      .OS {
        flex-direction: column;
        text-align: center;
        margin: 10px;
      }
      .web {
        margin: 10px;
      }
      .iso {
        margin: 10px;
      }
      .opis {
        font-size: 0.75rem;
      }
      h4 {
        font-size: 0.85rem;
        display: block;
      }
      .screenshots {
        margin: 10px;
      }
      .screenshots-grid {
        flex-direction: column;
      }
      .footer {
        font-size: 10px;
      }
      .navigation {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
        padding: 5px;
      }
      .navigation a {
        font-size: 13px;
        padding: 5px 8px;
        background-color: #cc9;
      }
      .navigation a:hover {
        background-color: rgb(236, 190, 50);
        text-decoration: none;
      }
    }

    .lightbox {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.92);
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }

    .lightbox img {
      max-width: 90%;
      max-height: 80%;
      border: 2px solid #fff;
      box-shadow: 0 0 20px rgba(0,0,0,0.5);
    }

    .close {
      position: absolute;
      top: 20px;
      right: 35px;
      color: #fff;
      font-size: 40px;
      font-weight: bold;
      cursor: pointer;
      font-family: Arial;
    }

    .close:hover {
      color: #aaa;
    }

    .prev, .next {
      cursor: pointer;
      position: absolute;
      top: 50%;
      width: auto;
      padding: 16px;
      margin-top: -50px;
      color: white;
      font-weight: bold;
      font-size: 40px;
      user-select: none;
    }

    .prev { left: 20px; }
    .next { right: 20px; }
    .prev:hover, .next:hover { color: #aaa; }

    .lightbox-caption {
      color: #ccc;
      margin-top: 15px;
      font-family: 'Courier New', monospace;
      font-size: 14px;
    }

    @media (max-width: 945px) {
      h4 {
        width: 60%;
      }
    }

    @media (max-width: 538px) {
      h4 {
        width: 80%;
      }
    }

    @media (max-width: 480px) {
      .table {
        font-size: 11px;
      }
      th, td {
        padding: 6px 5px;
      }
      .opis {
        font-size: 0.7rem;
      }
    }