* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #080c16;
  color: white;
  font-family: Arial, sans-serif;
}

.launcher {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
}

.launcher h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #d4a574;
}

.launcher p {
  font-size: 24px;
  margin-bottom: 30px;
}

.loading-spinner {
  border: 4px solid #333;
  border-top: 4px solid #d4a574;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  margin: 20px auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.fallback-options {
  margin-top: 40px;
}

.fallback-btn {
  display: inline-block;
  padding: 15px 30px;
  margin: 0 10px;
  background: #5b9cf6;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  border: 2px solid transparent;
  transition: all 0.3s;
  cursor: pointer;
}

.fallback-btn:hover,
.fallback-btn:focus {
  background: #4a8ce5;
  border-color: #d4a574;
  transform: scale(1.05);
}

#tv-iframe {
  width: 100vw;
  height: 100vh;
  border: none;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.hidden {
  display: none !important;
}
