/* Gallery page-specific styles, extracted from inline HTML. */
/* Preloader Styles */
    #preloader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #000;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }

    #preloader img {
      width: 150px;
      opacity: 0;
      animation: logoFadeScale 2.5s forwards;
    }

    @keyframes logoFadeScale {
      0% {
        opacity: 0;
        transform: scale(0.5);
      }

      25% {
        opacity: 1;
        transform: scale(1);
      }

      75% {
        opacity: 1;
        transform: scale(2);
      }

      100% {
        opacity: 0;
        transform: scale(2.2);
      }
    }

    /* Gallery Filter pills (scoped) */
    #portfolio-flters {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
    }

    #portfolio-flters li {
      cursor: pointer;
      padding: 8px 18px;
      border-radius: 6px;
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
      font-size: 14px;
      transition: all 0.25s ease;
      user-select: none;
    }

    #portfolio-flters li:hover {
      background: rgba(255, 255, 255, 0.14);
    }

    #portfolio-flters li.filter-active {
      background: rgba(0, 200, 83, 0.95);
      color: #000;
      font-weight: 600;
    }
