* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: sans-serif;
    background: black;
    color: white;
  }
  
  #canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  
  /* UI over the artwork */
  #top-right-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  #top-right-menu button {
    background: rgba(255, 255, 255, 0.5);
    color: black;
    border: none;
    padding: 6px 12px;
    cursor: pointer;
  }

  #mint-button:hover {
    background: rgba(255, 255, 255, 0.7);
  }

  
  #top-right-menu select {
    margin-top: 5px;
    padding: 4px;
    background: black;
    color: white;
    border: 1px solid white;
  }
  
  #footer {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 8px 14px;
    background: rgba(0, 0, 0, 0.4);
    font-size: 14px;
    z-index: 10;
    border-top-left-radius: 6px;
    text-align: right;
    max-width: 60vw; /* Optional: keeps long links tidy */
  }
  
  #instructions-button {
    background: rgba(255, 255, 255, 0.5);
    color: black;
    border: none;
    padding: 6px 12px;
    margin-top: 10px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    backdrop-filter: blur(4px);
    transition: background 0.2s ease;
  }
  
  #instructions-button:hover {
    background: rgba(255, 255, 255, 0.7);
  }
  
  #instructions {
    background: rgba(255, 255, 255, 0.5);
    color: black;
    padding: 10px;
    margin-top: 6px;
    border-radius: 4px;
    font-size: 14px;
    backdrop-filter: blur(4px);
    line-height: 1.4;
  }
  
  .hidden {
    display: none;
  }
  


  .hidden {
    display: none;
  }
  