        @media (prefers-color-scheme: dark) {
          :root {
            --blur: rgba(19, 23, 31, 0.5);
          }
        }

        @media (prefers-color-scheme: light) {
            :root {
                --blur: rgba(255, 255, 255, 0.5);
            }
        }
        body {
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }
        html::-webkit-scrollbar {
          display: none;
        }
        a{
            text-decoration: none;
        }
        #app {
            max-width: 1400px;
            margin: 0 auto;
            padding: 50px 15px;
            box-sizing: border-box;
        }
        
        @media (min-width: 600px) {
            #app {
                padding: 50px 30px;
            }
        }
        
        @media (min-width: 1200px) {
            #app {
                padding: 50px 80px;
            }
        }
        
        @media (min-width: 1600px) {
            #app {
                padding: 50px 120px;
            }
        }

        .topbar { 
            margin-bottom: 18px; 
        }

        .filters {
            display: flex;
            gap: 0.3rem;
            align-items: center;
            overflow-x: auto;
            white-space: nowrap;
            flex-wrap: nowrap;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }

        .filters::-webkit-scrollbar {
            display: none;
        }

        .filter-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            border-radius: 8px;
            background: transparent;
            border: 1px dashed rgba(128,128,128,.3);
            color: inherit;
            cursor: pointer;
            user-select: none;
            transition: all .3s ease;
            font-weight: 400;
            font-size: 0.95rem;
            backdrop-filter: saturate(130%) blur(10px);
            -webkit-backdrop-filter: saturate(130%) blur(10px);
            background: var(--blur);
            flex-shrink: 0;
        }

        .filter-label:hover { border: 1px dashed rgb(128,128,128); }
        .filter-label.active {
          border: 1px solid rgba(128,128,128,.8);
          font-weight: 600;
        }

        @media (max-width: 420px) {
            .filter-label { 
                padding: 10px 14px; 
                font-size: 0.92rem; 
            }
        }

        .container {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .row {
            display: flex;
            flex-wrap: nowrap;
            gap: var(--gap);
            overflow: visible;
            justify-content: center;
            position: relative;
            left: 0;
            transition: left 0.6s ease;
        }
        .card {
            position: relative;
            width: var(--card-width);
            transition: width 0.6s ease;
            cursor: pointer;
            overflow: hidden;
            border: 1px solid rgba(128,128,128,.3);
            box-sizing: border-box;
            height: var(--card-width);
            flex-shrink: 0;
        }
        .card.hovered {
            width: calc(2 * var(--card-width));
            z-index: 10;
        }
        .card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: width 0.6s ease, transform 0.6s ease;
            position: absolute;
            left: 0;
            top: 0;
        }
        .card.hovered img {
            width: 50%;
            z-index: 20;
        }
        .info {
            opacity: 0;
            filter: blur(16px);
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            padding: 10px;
            box-sizing: border-box;
            overflow-y: auto;
            transition: all 0.8s ease;
            z-index: -1;
        }
        .info h3{
            margin-top: 1rem;
        }
        .info .rate-number{
            opacity: .8;
            font-size: 1rem;
            position: absolute;
            bottom: 0.5rem;
        }

        .card.hovered .info {
            opacity: 1;
            filter: blur(0px);
        }
        .info::-webkit-scrollbar  {
            display: none;
        }
        .info .description{
            font-size: 0.8rem;
        }
        h3 small{
            font-weight: normal;
            color: #DC143C;
        }
        h3{
            font-size: 1.3rem;
            margin-bottom: 0;
        }
        p small{
            margin-top: -20px;
            font-size: 0.7rem;
        }

    .modal-overlay {
      position: fixed;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2000;
    }
    .modal-content {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      background: var(--pico-card-background-color);
      padding: 16px;
      border-radius: 16px;
      width: min(1000px, 92%);
      max-width: 1000px;
      box-sizing: border-box;
      position: relative;
      overflow: hidden;
      border: 2px solid rgba(200, 200, 200, 0.3);
      box-shadow: 0 10px 70px rgba(2,6,23,0.3);
    }
    .modal-image {
      width: 40%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      border-radius: 8px;
      visibility: hidden;
    }

    .modal-text {
      width: 64%;
      padding-left: 16px;
      box-sizing: border-box;
      margin-bottom: 1rem;
    }
    .modal-text .says{
      padding-right: 1rem;
      margin-top: 0.5rem;
      opacity: .8;
      font-size: 0.9rem;
    }
    .close-btn {
      position: absolute;
      right: 6px;
      top: 6px;
      border: none;
      font-size: 26px;
      line-height: 1;
      cursor: pointer;
      border-radius: 8px;
      padding: 0.5rem;
    }
    .hero-image {
      position: fixed;
      z-index: 3000;
      transition: all 0.48s cubic-bezier(.2,.9,.2,1);
      will-change: transform, width, height, left, top;
      object-fit: cover;
      border-radius: 8px;
      pointer-events: none;
    }
    .rate-number{
      opacity: 1;
      color:rgb(255, 193, 7);
      font-weight: bold;
      font-size: 1.3rem;
    }
    .meta {
      font-size: 0.6rem;
      border: 1px solid rgb(200, 200, 200);
      padding-left: .5rem;
      padding-right: .5rem;
      border-radius: 16px;
      opacity: .5;
      margin-top: 0.5rem;
      margin-left: -0.2rem;
      width: fit-content; 
    }

    @media (max-width: 420px) {
      .hero-image { display: none; }
      .modal-image { display: none; }
      .modal-text { width: 100%; }
      .meta { margin-top: 1rem; }
    }
    @media (min-width: 800px) {
      .search{ position: absolute;bottom: 1rem; }
      .says{ margin-right: 3rem; }
    }
      .search { line-height: 1; }
      .search span{ font-size: .5rem; font-weight: bold; opacity: .3; font-style: italic; }
      .search a{ font-size: 0.8rem; opacity: .8;}

    .modal-content h3 {
      margin-top: 0.5rem;
      margin-bottom: 0;
      font-size: 1.5rem;
    }
    .modal-content p {
      margin-bottom: 0;
    }
    .modal-text .subname{
      padding-right: 1rem;
      opacity: .8;
      font-size: 1.2rem;
      font-weight: normal;
      color: #DC143C;
    }

    .reveal-enter-active,
    .reveal-leave-active {
      overflow: hidden;
      transition: clip-path 0.5s ease, opacity 0.5s ease;
    }

    .reveal-enter-from {
      clip-path: inset(0 100% 0 0);
      opacity: 0.6;
    }

    .reveal-enter-to {
      clip-path: inset(0 0 0 0);
      opacity: 1;
    }

    .reveal-leave-from {
      clip-path: inset(0 0 0 0);
      opacity: 1;
    }

    .reveal-leave-to {
      clip-path: inset(0 100% 0 0);
      opacity: 0.6;
    }