      #poster-wall-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        overflow: hidden;
        z-index: 0;
        gap: 5px;
        pointer-events: none;
        display: flex;
        flex-direction: row;
      }

      .poster-wall {
        position: fixed;
        top: 0;
        left: 0;
        min-height: 100vh;       /* Ensures it fills the full viewport height */
        width: 100%;              /* Fills full width, up to max */
        max-width: 100%;          /* Prevents overflow */
        overflow: hidden;
        z-index: 0;
        pointer-events: none;
        object-fit: cover;        /* Optional: helps with image/video sizing inside */
      }

      
      #poster-wall {
      display: flex;
      animation: scroll-down 320s linear infinite;
      width: max-content;
      flex-direction: column;
      gap: 5px;
      padding: 0;
      margin: 0;
      opacity: 100;
    }


      .scroll-track {
        display: flex;
        flex-direction: column;  
        animation: scrollWall 320s linear infinite;
      }


    .hero-wall {
        overflow: hidden;
        position: relative;
      }


      #poster-wall img {
        height: 225px;
        aspect-ratio: 27 / 40;
        flex-shrink: 0;
        object-fit: cover;
        opacity: 0.3;
        display: block;
        margin: 0;
        padding: 0;
      }

      @keyframes scroll-down {
        0% {
          transform: translateY(0);
        }
        100% {
          transform: translateY(-50%);
        }
      }






  #cookie-jar-banner {
    background: #3b2f2f;
    padding: 1.5em;
    border-radius: 10px;
    display: flex;
  }

  .jar-icon {
    width: 60px;
    height: auto;
  }

  .cookie-action {
    margin-top: 1em;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    align-items: center;
  }

  .cookie-btn {
    background-color: #7d5a50;
    border: none;
    color: white;
    padding: 0.5em 1em;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9em;
  }

  .cookie-btn:hover {
    background-color: #a9746e;
  }

  .logo {
    height: 100px;
  }

  header {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .login-box {
    margin-top: 0;
  }


    html, body {
      margin: 0;
      padding: 0;
      height: 100%;
      font-family: 'Courier New', Courier, monospace;
      background-color: #252525;
      color: white;
    }

    body {
      display: flex;
      flex-direction: column;
      overflow: hidden; /* disables scrollbars */
    }

    .info {
      flex: 1;
      font-size: 1.1em;
      line-height: 1.5;
      user-select: none;
      padding: 2em;
    }

    .icon-button img {
      height: 20px;
      width: 20px;
    }

    .icon-button:hover {
      background-color: #666;
      transform: scale(1.05);
    }

    .icon-button.disabled {
      pointer-events: none;
      opacity: 0.5;
      cursor: not-allowed;
    }

    .jar-icon {
      width: 60px;
      height: auto;
    }

    #cookie-settings {
      position: fixed;
      bottom: 1em;
      right: 1em;
    }



    .form-message {
      font-size: 0.9rem;
      text-align: center;
      margin-top: 0.5rem;
      color: #ff6b6b;
    }

    .form-message.success {
      color: #4ade80;
    }

    .password-row {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .password-row img {
      cursor: pointer;
      height: 20px;
    }

    .password-row button {
      margin-left: auto;
    }