/* Reset toàn bộ margin và padding */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background: #000;
    overflow: hidden;
  }
  
  /* Canvas Unity full màn hình */
  #unity-canvas {
    display: block;
    width: 100vw;
    height: 100vh;
    background: #000;
  }
  
  /* Ẩn toàn bộ thành phần Unity mặc định (logo, footer, v.v.) */
  #unity-footer,
  #unity-webgl-logo,
  #unity-build-title,
  #unity-fullscreen-button,
  #unity-loading-bar,
  #unity-warning {
    display: none !important;
  }
