   body {
      margin: 0;
      font-family: "Courier New", monospace;
      background: repeating-linear-gradient(
        45deg,
        #f4ecd8,
        #f4ecd8 20px,
        #e9dfc5 20px,
        #e9dfc5 40px
      );
      color: #2e2a1f;
    }
    .container {
      max-width: 1200px;
      margin: auto;
      padding: 24px;
    }
    h1 {
      font-size: 26px;
      font-weight: bold;
      text-shadow: 1px 1px 0px #fff;
    }
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
      gap: 20px;
    }
    .item {
      display: block;
      text-decoration: none;
      background: #fdfaf3;
      border: 2px solid #d4c49b;
      border-radius: 6px;
      padding: 20px;
      text-align: center;
      box-shadow: 4px 4px 0 #b7a678;
      transition: transform .2s ease;
      color: inherit;
    }
    .item:hover {
      transform: translate(-3px, -3px);
      box-shadow: 7px 7px 0 #9c8a64;
    }
    .folder {
      width: 92px;
      height: 72px;
      margin: auto;
      background: linear-gradient(180deg, #ffef9f, #e7d376);
      border: 2px solid #bfa44d;
      border-radius: 4px 4px 2px 2px;
      box-shadow: inset -4px -4px 0 #d6c166;
      position: relative;
    }
    .folder::before {
      content: "";
      position: absolute;
      top: -14px;
      left: 6px;
      width: 40px;
      height: 14px;
      background: #ffef9f;
      border: 2px solid #bfa44d;
      border-bottom: none;
      border-radius: 4px 4px 0 0;
      box-shadow: inset -2px -2px 0 #d6c166;
    }
    .label {
      margin-top: 12px;
      font-weight: bold;
      font-size: 14px;
      text-transform: uppercase;
      color: #2e2a1f;
    }
    .search {
      width: 250px;
      padding: 8px 12px;
      border: 2px solid #bfa44d;
      border-radius: 4px;
      background: #fdfaf3;
      font-family: "Courier New", monospace;
    }