    .ma-category {
      max-width: 1400px;
      margin: 0 auto;
      padding: 160px 48px 0;
      text-align: left;
    }
    .ma-category-title {
      font-family: 'Manrope', sans-serif;
      font-size: clamp(22px, 2.8vw, 32px);
      font-weight: 800;
      letter-spacing: -0.02em;
      color: var(--yellow);
      line-height: 1.4;
      margin-bottom: 0;
    }
    .ma-category-desc {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(14px, 1.5vw, 17px);
      font-weight: 300;
      color: rgba(255,255,255,0.75);
      line-height: 1.7;
      max-width: 700px;
      min-height: 3.4em;
      white-space: pre-line;
    }
    /* No transition by default — only animate while .animating is present,
       so jumping TO the hidden state (.enter) is instant, and only the
       return to rest is ever animated. Without this split, adding .enter
       itself kicks off a transition that gets reversed a frame later,
       leaving almost no distance left to visibly animate back. */
    .ma-category-title.animating, .ma-category-desc.animating {
      transition: transform 0.9s ease-in-out, opacity 0.9s ease-in-out;
    }
    .ma-category-title.enter, .ma-category-desc.enter { transform: translateY(26px); opacity: 0; }

    @media (max-width: 768px) {
      .ma-category { padding: 100px 20px 0; }
    }

    .ma-tabbar {
      display: flex;
      align-items: baseline;
      flex-wrap: wrap;
      max-width: 1400px;
      margin: 40px auto 0;
      padding: 0 48px;
      border-bottom: 1px solid rgba(255,255,255,0.12);
    }
    .ma-tabs {
      display: flex;
      gap: 34px;
      flex-wrap: wrap;
    }
    .ma-tab-btn {
      font-family: 'Manrope', sans-serif;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      background: none;
      border: none;
      cursor: pointer;
      padding: 0 0 16px;
      position: relative;
    }
    .ma-tab-btn::after {
      content: '';
      position: absolute;
      left: 0; right: 0; bottom: -1px;
      height: 2px;
      background: var(--yellow);
      opacity: 0;
      transition: opacity 0.2s;
    }
    .ma-tab-btn.active {
      color: #ffffff;
    }
    .ma-tab-btn.active::after { opacity: 1; }

    .ma-grid {
      display: none;
      max-width: 1400px;
      margin: 0 auto;
      padding: 56px 48px 100px;
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
    }
    .ma-grid.active { display: grid; }

    .ma-card {
      display: block;
      position: relative;
      overflow: hidden;
      border-radius: 4px;
      cursor: pointer;
      background: #000;
      transition: opacity 0.25s ease;
    }
    .ma-card.card-hidden {
      opacity: 0;
      pointer-events: none;
    }
    .ma-card-image {
      position: relative;
      padding-top: 62%;
      overflow: hidden;
      background: #0a0a0a;
    }
    .ma-card.is-still .ma-card-image { padding-top: 100%; }
    .ma-card-image img {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      transform: scale(1.02);
      transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .ma-card:hover .ma-card-image img { transform: scale(1.08); }
    .ma-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
    }
    .ma-card.is-still .ma-card-overlay { display: none; }
    .ma-card-text {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 18px 20px;
      font-family: 'Manrope', sans-serif;
    }
    .ma-card-text em { font-style: italic; opacity: 0.9; }
    .ma-card-text strong { font-weight: 700; }
    .ma-card-title {
      font-size: 14px;
      font-weight: 600;
      color: #fff;
      line-height: 1.4;
      text-shadow: 0 2px 8px rgba(0,0,0,0.6);
    }

    @media (max-width: 768px) {
      .ma-tabbar { padding: 0 20px; margin-top: 24px; }
      .ma-tabs { gap: 20px; }
      .ma-tab-btn { font-size: 12px; }
      .ma-grid { grid-template-columns: 1fr; padding: 40px 20px 80px; gap: 24px; }
    }

    /* Lightbox */
    .ma-lightbox {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.97);
      z-index: 1000;
      overflow-y: auto;
      padding: 120px 24px 60px;
    }
    .ma-lightbox.active { display: block; }
    .ma-lightbox-inner {
      max-width: 1000px;
      margin: 0 auto;
    }
    .ma-lightbox-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 20px;
    }
    .ma-lightbox-title {
      font-family: 'Manrope', sans-serif;
      font-size: clamp(18px, 2.4vw, 26px);
      font-weight: 800;
      color: #fff;
    }
    .ma-lightbox-title span {
      font-weight: 400;
      color: rgba(255,255,255,0.7);
      margin-left: 8px;
    }
    .ma-lightbox-close {
      background: none;
      border: none;
      color: rgba(255,255,255,0.6);
      font-size: 32px;
      line-height: 1;
      cursor: pointer;
      padding: 0;
      flex-shrink: 0;
    }
    .ma-lightbox-close:hover { color: #fff; }
    .ma-lightbox-media {
      position: relative;
      width: 100%;
      padding-top: 56.25%;
      background: #000;
      margin-bottom: 32px;
    }
    .ma-lightbox-media.is-still { padding-top: 0; }
    .ma-lightbox-media iframe {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      border: none;
    }
    .ma-lightbox-media img {
      width: 100%;
      max-height: 80vh;
      object-fit: contain;
      display: block;
      position: static;
    }
    .ma-lightbox-description {
      display: none;
      font-family: 'Poppins', sans-serif;
      font-size: 14px;
      font-weight: 300;
      line-height: 1.85;
      color: rgba(255,255,255,0.75);
      margin-bottom: 32px;
      max-width: 760px;
    }
    .ma-lightbox-credits {
      display: grid;
      grid-template-columns: 1fr 1fr auto;
      gap: 0 32px;
      padding-bottom: 24px;
    }
    .ma-lightbox-credits > div {
      display: flex;
      flex-direction: column;
    }
    .ma-lightbox-credits .ma-credit-logos {
      flex-direction: column;
      align-items: flex-end;
      gap: 16px;
    }
    .ma-credit-logos img {
      width: auto;
      max-width: 120px;
      object-fit: contain;
    }
    @media (max-width: 600px) {
      .ma-lightbox-credits { grid-template-columns: 1fr 1fr; }
      .ma-lightbox-credits .ma-credit-logos { grid-column: 1 / -1; flex-direction: row; align-items: center; margin-top: 16px; }
    }
    .ma-credit-role {
      font-family: 'Manrope', sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      margin-bottom: 4px;
    }
    .ma-credit-name {
      font-family: 'Poppins', sans-serif;
      font-size: 15px;
      font-weight: 400;
      color: #fff;
      margin-bottom: 18px;
    }
    .ma-lightbox-nav {
      position: fixed;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      color: rgba(255,255,255,0.4);
      font-size: 42px;
      cursor: pointer;
      padding: 16px;
      z-index: 1001;
      line-height: 1;
    }
    .ma-lightbox-nav:hover { color: #fff; }
    #maPrev { left: 12px; }
    #maNext { right: 12px; }
    @media (max-width: 768px) {
      .ma-lightbox { padding: 80px 16px 40px; }
      .ma-lightbox-nav { display: none; }
    }
