body {
  padding: 0;
  margin: 0;
}

/* UNITY CONTAINER STYLES */
#unity-container {
  position: absolute;
}

#unity-container.unity-desktop {
  left: 50%;
  top: 65%;
  transform: translate(-50%, -50%);
}

#unity-container.unity-mobile {
  width: 100%;
  height: 100%;
}

#unity-canvas {
  background: #231F20;
}

.unity-mobile #unity-canvas {
  width: 100%;
  height: 100%;
}

#unity-loading-bar {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
}

#unity-logo {
  width: 154px;
  height: 130px;
  background: url('unity-logo-dark.png') no-repeat center;
}

#unity-progress-bar-empty {
  width: 141px;
  height: 18px;
  margin-top: 10px;
  margin-left: 6.5px;
  background: url('progress-bar-empty-dark.png') no-repeat center;
}

#unity-progress-bar-full {
  width: 0%;
  height: 18px;
  margin-top: 10px;
  background: url('progress-bar-full-dark.png') no-repeat center;
}

#unity-footer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999; /* pastikan lebih tinggi dari elemen lain */
}


.unity-mobile #unity-footer {
  display: none;
}

#unity-webgl-logo {
  float: left;
  width: 204px;
  height: 38px;
  background: url('webgl-logo.png') no-repeat center;
}

#unity-build-title {
  float: right;
  margin-right: 10px;
  line-height: 38px;
  font-family: arial;
  font-size: 18px;
}

#unity-fullscreen-button {
  float: left;
  width: 38px;
  height: 38px;
  background: url('fullscreen-button.png') no-repeat center;
}

#unity-warning {
  position: absolute;
  left: 50%;
  top: 5%;
  transform: translate(-50%);
  background: white;
  padding: 10px;
  display: none;
}

/* NAVIGATION STYLES */
nav {
  background-color: #0066cc;    /* Warna background header */
  padding: 10px 20px;           /* Jarak dalam header */
  position: sticky;             /* Header selalu terlihat saat scroll */
  top: 0;                       /* Posisi sticky di atas */
  z-index: 10;                  /* Agar header di atas elemen lain */
  box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Bayangan halus */
  
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 15px;
}

nav li {
  display: inline;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  
}

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

/* Menu */
.menu-items {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin: 0;
  padding-top: 20px;
  list-style: none;
  justify-content: flex-end;
}

.menu-items li {
  min-width: 50px;
}

.menu-items a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 12px;
  transition: background 0.3s ease;
  display: inline-block;
  white-space: nowrap;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

