/* WebGL Content Styles */
.webgl-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 2rem auto;
  max-width: 1000px;
  position: relative;
}

#unityContainer {
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

#unityContainer .fullscreen {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 10;
  background-image: url('fullscreen.png');
  width: 38px;
  height: 38px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

#unityContainer .fullscreen:hover {
  opacity: 1;
}

/* Responsive styles */
@media (max-width: 768px) {
  .webgl-content {
    margin: 1rem auto;
    max-width: 90vw;
  }
  
  #unityContainer {
    width: 90vw !important;
    height: 50vh !important;
    max-width: 800px;
  }
  
  #unityContainer .fullscreen {
    bottom: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
  }
}