.boh-shell__main:has(.entry-splash) {
  padding-left: 0;
  padding-right: 0;
}

.entry-splash {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--boh-color-surface);
  overflow: hidden;
}

.entry-splash__background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.entry-splash__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgb(0 0 0 / 20%) 0%,
      transparent 50%,
      color-mix(in srgb, var(--boh-color-deep-bg) 90%, transparent) 100%);
}

.entry-splash__header,
.entry-splash__actions {
  position: relative;
  z-index: 1;
  padding-left: var(--boh-space-screen);
  padding-right: var(--boh-space-screen);
}

.entry-splash__header {
  padding-top: 5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.entry-splash__language {
  position: absolute;
  top: 3rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  border: none;
  background: transparent;
  color: var(--boh-color-surface);
  border-radius: 9999px;
  padding: 0.5rem 0.375rem 0.5rem 0.25rem;
  font-family: var(--boh-font-sans);
  font-size: 13px;
  line-height: 1.2;
  font-weight: var(--boh-font-weight-700);
  box-shadow: none;
  cursor: pointer;
  transition: transform 0.2s ease;
  z-index: 20;
}

.entry-splash__language:active {
  transform: scale(0.95);
}

.entry-splash__language-icon {
  width: 1rem;
  height: 1rem;
  stroke-width: 2px;
}

.entry-splash__logo {
  margin-top: 0;
  width: 12.5rem;
}

.entry-splash__actions {
  padding-bottom: calc(3rem + env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.entry-splash__hero {
  margin: 0;
  color: var(--boh-color-surface);
  font-family: var(--boh-font-serif);
  font-size: 28px;
  line-height: 1.25;
  font-weight: var(--boh-font-weight-600);
  text-align: center;
  white-space: pre-line;
  margin-bottom: 2.5rem;
}

.entry-splash__primary-cta {
  width: 100%;
  margin-top: 0;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: var(--boh-color-surface);
  color: var(--boh-color-primary) !important;
  border-color: transparent;
  box-shadow: var(--boh-shadow-card);
}

.entry-splash__primary-cta-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.entry-splash__secondary-cta {
  display: block;
  margin-top: 0;
  text-align: center;
  color: var(--boh-color-surface);
  font-family: var(--boh-font-sans);
  font-size: var(--boh-font-size-body);
  line-height: var(--boh-line-height-body);
  font-weight: var(--boh-font-weight-500);
  text-decoration: none;
  transition: color 0.2s ease;
}

.entry-splash__secondary-cta:hover {
  color: color-mix(in srgb, var(--boh-color-surface) 80%, transparent);
}