/* Bewusst so schlank wie möglich gehalten:
   keine Transitions, keine Animationen, kein Web-Font-Loading,
   nichts, was auf einem TV mit wenig RAM zusätzlichen
   Compositing-/Repaint-Overhead erzeugt. */

* {
  margin: 0;
  padding: 0;
  border: 0;
}

html, body {
  width: 100%;
  height: 100%;
  background: #000; /* verhindert weißes Aufblitzen beim Laden */
  overflow: hidden;  /* keine Scrollbars, kein Scroll-Repaint */
}

#stremio-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  border: none;
  background: #000;
  /* keine box-shadow/filter/opacity-Transitions -> spart GPU/RAM */
}

/* ---- Başlangıç (launcher) ekranı ------------------------------------- */

.launcher {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f0226; /* webOS iconColor ile uyumlu koyu arka plan */
  z-index: 10;
}

.launcher-box {
  text-align: center;
  max-width: 720px;
  padding: 40px;
}

.launcher-title {
  font-size: 56px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.launcher-subtitle {
  font-size: 24px;
  color: #9a8fc0;
  margin-bottom: 48px;
}

.launcher-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.launcher-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 240px;
  padding: 28px 24px;
  border: 2px solid #3a2f66;
  border-radius: 16px;
  background: #1a1233;
  color: #fff;
  cursor: pointer;
  font-family: inherit;
}

.launcher-btn:focus,
.launcher-btn:hover {
  border-color: #7c5cff;
  background: #2a1d4d;
  outline: none;
}

.launcher-btn-title {
  font-size: 28px;
  font-weight: bold;
}

.launcher-btn-desc {
  font-size: 18px;
  color: #9a8fc0;
}

/* Seçim yapılınca launcher görünmez olur */
.launcher.hidden {
  display: none;
}
