  @font-face {
    font-family: PixelifySans;
    src: url(../img/PixelifySans-VariableFont_wght.ttf);
  }
    
    html, body {
      min-height: 100vh;
      margin: 0;
      display: flex;
      flex-direction: column;
      background-color: #111;
      color: white;
      font-family: Arial, sans-serif;

      overflow-x: hidden;
      overflow-y: auto;
    }

    body {
      display: flex;
      flex-direction: column;
    }

    nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 2rem;
      border-bottom: 1px solid white;
      background: transparent;
      z-index: 10;
      position: relative;
    }

    .nav-left {
      display: flex;
      gap: 1.5rem;
    }

    .nav-left a {
      text-decoration: none;
      color: white;
      font-weight: 600;
      letter-spacing: 1px;
      transition: color 0.2s;
      cursor: pointer;
    }

    .nav-left a:hover {
      color: #ccc;
    }

    .nav-center img {
      height: 45px;
    }

    main {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;

      overflow-x: hidden;
      overflow-y: auto;
    }

    a {
      color: white;
      text-decoration: none;
      transition-duration: 0.5s;
    }

    main img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }


    main video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      pointer-events: none;
    }

    header {
      display: flex;
      align-items: flex-start;
      padding: 2rem;
      transition: filter 0.3s ease;
      flex-wrap: wrap;
    }

    header img {
      width: 600px;
      height: 600px;
      object-fit: cover;
      box-shadow: 0 4px 12px rgba(0,0,0,0.6);
      margin-right: 2rem;
    }

    header .title {
      margin-top: 1rem;
      max-width: 600px;
    }

    header h1 {
      font-size: 3rem;
      font-weight: bold;
      margin: 0;
    }

    a {
      color: white;
      text-decoration: none;
      transition-duration: 0.5s;
    }

    header p {
      font-size: 1.125rem;
      color: #aaa;
      margin-top: 0.5rem;
    }

    .note {
      font-style: italic;
      color: #ccc;
      margin-top: 1.5rem;
      max-width: 600px;
    }

    .buttons {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-top: 1.5rem;
      max-width: 600px;
    }

    .buttons a {
      display: block;
      width: 100%;
      padding: 0.75rem 1rem;
      border: 1px solid white;
      background-color: transparent;
      color: white;
      font-weight: bold;
      text-align: center;
      text-transform: uppercase;
      letter-spacing: 1px;
      text-decoration: none;
      transition: all 0.25s;
    }

    .buttons a:hover {
      background-color: white;
      color: black;
    }

    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.85);
      display: none;
      justify-content: flex-start;
      align-items: flex-start;
      z-index: 9999;
      opacity: 0;
      animation: fadeIn 0.4s forwards;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    .album-list {
      margin: 4rem 2rem;
      text-align: left;
    }

    .album-list ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .album-list li {
      font-weight: bold;
      font-size: 1.5rem;
      color: white;
      margin: 0.5rem 0;
    }

    footer {
      text-align: center;
      padding: 1rem;
      background: #000;
      font-size: 0.9rem;
      margin-top: auto;
    }

    footer a {
      color: #fff;
      margin: 0 8px;
      text-decoration: none;
      font-weight: bold;
    }

    footer a:hover {
      text-decoration: underline;
    }

    /* mobile */
    @media (max-width: 1024px) {
      header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
      }

      header img {
        width: 80%;
        height: auto;
        margin: 0 0 1.5rem 0;
      }

      header .title {
        margin: 0;
        max-width: 90%;
      }

      header h1 {
        font-size: 2.2rem;
      }

      header p {
        font-size: 1rem;
      }

      .note {
        font-size: 0.95rem;
        margin-top: 1rem;
      }

      .buttons a {
        font-size: 0.95rem;
      }
    }

    @media (max-width: 600px) {
      nav {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0.75rem 1rem;
      }

      .nav-left {
        gap: 1rem;
        margin-bottom: 0.5rem;
      }

      .nav-center img {
        height: 35px;
      }

      header h1 {
        font-size: 1.8rem;
      }

      .buttons {
        width: 100%;
      }

      .buttons a {
        font-size: 0.85rem;
        padding: 0.6rem;
      }

      footer {
        font-size: 0.8rem;
      }
    }