/* Obere Tab-Leisten ausblenden (desktop + mobile) */
[role="tablist"] {
  display: none !important;
}

#app-home-screen {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: radial-gradient(circle at 20% 10%, #ffffff 0%, #f1f5f9 45%, #e2e8f0 100%);
  display: none;
  padding: 16px;
  overflow: auto;
}

body.app-home-active #app-home-screen {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

body.app-home-active > header {
  display: none !important;
}

body.app-home-active .max-w-7xl.mx-auto.px-3.sm\:px-4.py-4.sm\:py-6.pb-28.md\:pb-8 {
  display: none !important;
}

.app-home-card {
  background: #ffffff;
  border: 1px solid #dbe3ee;
  border-radius: 22px;
  padding: 30px 24px 26px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.14);
  min-height: min(72vh, 740px);
  max-width: 620px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.app-home-shell {
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.app-home-brand {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  color: #64748b;
  text-transform: uppercase;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  padding: 8px 14px;
  background: #ffffff;
}

.app-home-logo-wrap {
  width: min(340px, 80vw);
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.app-home-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(15, 23, 42, 0.18));
}

.app-home-title {
  margin: 4px 0 0;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 800;
  color: #0f172a;
}

.app-home-subtitle {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
  text-align: center;
}

.app-home-start {
  height: 52px;
  min-width: 190px;
  border: 1px solid #0f172a;
  border-radius: 14px;
  background: #0f172a;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.25);
  transition: transform 0.14s ease, background-color 0.14s ease, box-shadow 0.14s ease;
}

.app-home-start-icon {
  font-size: 14px;
  transform: translateX(1px);
}

.app-home-start:hover {
  background: #1e293b;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.3);
}

@media (max-width: 1000px) {
  .app-home-shell {
    min-height: 65vh;
  }
  .app-home-card {
    min-height: 62vh;
    border-radius: 18px;
    padding: 20px 16px 18px;
  }
  .app-home-title {
    font-size: 28px;
  }
  .app-home-start {
    min-width: 170px;
  }
}

@media (max-width: 760px) {
  #app-home-screen {
    padding: 10px;
  }

  .app-home-brand {
    font-size: 11px;
    padding: 7px 12px;
  }

  .app-home-card {
    max-width: 100%;
    min-height: 72svh;
    padding: 16px 12px 14px;
    border-radius: 16px;
  }

  .app-home-logo-wrap {
    width: min(300px, 84vw);
    border-radius: 16px;
    padding: 10px;
  }

  .app-home-title {
    font-size: 24px;
  }

  .app-home-subtitle {
    font-size: 13px;
    margin-bottom: 4px;
  }

  .app-home-start {
    width: min(220px, 80vw);
    height: 48px;
    min-width: 0;
    font-size: 15px;
  }
}
