      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      .font-caladea {
        font-family: "Caladea", serif;
      }

      .font-arimo {
        font-family: "Arimo", sans-serif;
      }

      .font-limelight {
        font-family: "Limelight", sans-serif;
      }

      .font-tinos {
        font-family: "Tinos", serif;
      }

      .font-anton {
        font-family: "Anton", sans-serif;
      }

      body {
        font-family: "Arimo", sans-serif;
        background-color: #101010;
      }

      header {
        background-color: #101010;
        padding: 20px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .name-container {
        cursor: pointer;
        text-decoration: none;
        color: inherit;
        display: block;
      }

      .name {
        color: #fbf5ef;
        font-size: 24px;
        font-weight: bold;
      }

      .title {
        color: #fbf5ef;
        font-size: 20px;
      }

      nav ul {
        list-style: none;
        display: flex;
        gap: 30px;
      }

      nav a {
        color: #fbf5ef;
        text-decoration: none;
        font-size: 16px;
        transition: color 0.3s;
      }

      nav a:hover {
        color: #aeaeae;
      }

      main {
        padding: 20px 20px;
        max-width: 1500px;
        margin: 0 auto;
      }

      .image-container {
        max-width: 100%;
        margin: 0 auto;
        position: relative;
        user-drag: none;

      }

      .image {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
      }

      .overlay-text {
        position: absolute;
        transform: translate(-50%, -50%);
        color: #d8c900;
        font-size: 10vw;
        font-weight: bold;
        text-align: center;
        mix-blend-mode: normal;
        white-space: nowrap;
        top: 50%;
        left: 20%;
        width: 90%;
        user-select: none;

        font-family: "Caladea", serif;
        font-weight: 700;
        font-style: normal;
      }

      .projects-container {
        display: flex;
        flex-direction: column;
        gap: 5px;
      }

      .name-container:hover,
      .name-container:active,
      .name-container:visited {
        text-decoration: none;
      }

      .project {
        display: flex;
        gap: 40px;
        align-items: center;
        padding: 30px;
        margin: 0 0px;
        transition: background-color 0.3s ease;
        cursor: pointer;
        text-decoration: none;
        color: inherit;
      }

      .project:hover {
        background-color: #141414;
      }

      .project:nth-child(even) {
        flex-direction: row-reverse;
      }

      .project-image {
        flex: 1;
        max-width: 50%;
      }

      .project-image img {
        width: 100%;
        height: auto;
        display: block;
      }

      .project-content {
        flex: 1;
        max-width: 50%;
      }

      .project-title {
        font-size: 50px;
        font-weight: 700;
        color: #d8c900;
        margin-bottom: 15px;
      }

      .project-description {
        font-size: 16px;
        line-height: 1.6;
        color: #fbf5ef;
      }

      @media (max-width: 768px) {

        .project,
        .project:nth-child(even) {
          flex-direction: column;
        }

        .project-image,
        .project-content {
          max-width: 100%;
        }
      }

      .project-header {
        text-align: center;
        padding: 40px 20px;
        max-width: 1200px;
        margin: 0 auto;
      }

      .project-name {
        font-size: 48px;
        font-weight: 700;
        color: #d8c900;
        margin-bottom: 30px;
      }

      .project-credits {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        max-width: 800px;
        margin: 0 auto;
      }

      .credit-item {
        text-align: center;
        padding: 0 20px;
      }

      .credit-role {
        font-size: 14px;
        color: #aeaeae;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 8px;
      }

      .credit-name {
        font-size: 18px;
        color: #fbf5ef;
        font-weight: 600;
        margin-bottom: 10px;
      }

      .stills-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        padding: 40px 20px;
        max-width: 1500px;
        margin: 0 auto;
        justify-items: center
      }

      .still-item {
        width: 100%;
        overflow: hidden;
      }

      .still-item img {
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
        transition: transform 0.3s ease;
        cursor: pointer;
      }

      .still-item img:hover {
        transform: scale(1.02);
      }

      /* Lightbox styles */
      .lightbox {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #101010e0;
        z-index: 1000;
        justify-content: center;
        align-items: center;
        cursor: pointer;
      }

      .lightbox.active {
        display: flex;
      }

      .lightbox-content {
        width: auto;
        height: auto;
        max-width: 95vw;
        max-height: 95vh;
        object-fit: contain;
        transition: transform 0.3s ease;
        cursor: zoom-in;
      }

      .lightbox-content.zoomed {
        cursor: grab;
        transform: scale(0);
        max-width: none;
        max-height: none;
      }

      .lightbox-content.zoomed.dragging {
        cursor: grabbing;
      }

      .lightbox-close {
        position: absolute;
        top: -12px;
        right: -5px;
        font-size: 40px;
        color: #fbf5ef36;
        cursor: pointer;
        z-index: 1001;
        background: none;
        border: none;
        padding: 10px;
        line-height: 1;
        transition: color 0.3s;
      }

      .lightbox-close:hover {
        color: #d8c900;
      }

      .lightbox-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        font-size: 50px;
        color: #fbf5ef36;
        cursor: pointer;
        z-index: 1001;
        background: none;
        border: none;
        padding: 20px;
        transition: color 0.3s;
        user-select: none;
      }

      .lightbox-arrow:hover {
        color: #d8c900;
      }

      .lightbox-arrow.left {
        left: -10px;
      }

      .lightbox-arrow.right {
        right: -10px;
      }

      @media (max-width: 1024px) {
        .stills-grid {
          grid-template-columns: repeat(3, 1fr);
        }
      }

      @media (max-width: 768px) {
        .project-name {
          font-size: 36px;
        }

        .project-credits {
          grid-template-columns: repeat(2, 1fr);
          max-width: 600px;
        }

        .credit-item:last-child {
          grid-column: 1 / -1;
        }

        .stills-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 15px;
        }
      }

      @media (max-width: 480px) {
        .stills-grid {
          grid-template-columns: 1fr;
        }
      }
