html, body {
	margin: 0px;
	background: #1b2450;
	width: 100%; height: 100%;
	font-family: Arial, Helvetica, sans-serif;
}
#earth {
	position: fixed;
	width: 100%; height:100%;
	touch-action: manipulation;
}

#satellite-dialog {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(20, 30, 60, 0.95);
    border: 2px solid #ffc52b;
    border-radius: 12px;
    padding: 30px 40px;
    z-index: 10000;
    min-width: 300px;
    box-shadow: 0 0 30px #ffc62b8b;
  }
  
  #satellite-dialog.show {
    display: block;
    animation: dialogFadeIn 0.3s ease-out;
  }
  
  @keyframes dialogFadeIn {
    from {
      opacity: 0;
      transform: translate(-50%, -50%) scale(0.8);
    }
    to {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }
  }
  
  #satellite-dialog h2 {
    margin: 0 0 15px 0;
    color: #ffc52b;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
  }
  
  #satellite-dialog p {
    margin: 8px 0;
    color: #ffffff;
    font-size: 16px;
  }
  
  #dialog-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
  }
  
  #dialog-overlay.show {
    display: block;
  }