* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Orbitron', 'Space Grotesk', sans-serif;
  font-weight: 500;
  background-color: #0f0f0f;
  color: white;
  overflow-x: hidden;
}
html {
  overflow-y: scroll;
}
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1.5rem;
  color: white;
  text-decoration: none;
}
.logo img {
  height: 100px;
  border: 1px solid red; /* Test-Rahmen, um eventuelle Ränder zu erkennen */
}
.appstore-logo {
  height: 64px;
  filter: brightness(0) invert(1);
  margin-top: 24px;
}
header {
  text-align: center;
  padding: 4rem 2rem 2rem;
}
h1 {
  font-size: 6rem;
  color: #d5d2a1;
  margin-bottom: 3rem;
  line-height: 1.2;
}
.get-app-button {
  background-color: #d5d2a1;
  color: black;
  padding: 1rem 2rem;
  font-size: 1.5rem;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.15s ease-in-out, transform 0.15s ease-in-out;
  display: inline-block;
}
.get-app-button:hover {
  background-color: white;
  color: black;
  transform: scale(1.15);
}
.image-placeholder {
  width: 90%;
  max-width: 720px;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #2d2d2d, #3a3a3a);
  border: 2px dashed #444;
  border-radius: 1rem;
  margin: 3rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  font-size: 1.2rem;
}
.content-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 1rem auto;
  width: 90%;
  max-width: 900px;
}
.content-placeholder {
  flex: 1 1 calc(50% - 0.5rem);
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #2d2d2d, #3a3a3a);
  border: 2px dashed #444;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  font-size: 1.2rem;
  min-width: 300px;
}
.content-split {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 1rem auto 3rem;
  width: 90%;
  max-width: 900px;
}
.content-split .left {
  flex: 2 1 60%;
  aspect-ratio: 4 / 3;
}
.content-split .right {
  flex: 1 1 35%;
  aspect-ratio: 4 / 3;
}
.content-split .left,
.content-split .right {
  background: linear-gradient(135deg, #2d2d2d, #3a3a3a);
  border: 2px dashed #444;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  font-size: 1.2rem;
}
hr {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, #333, transparent);
  margin: 4rem 0 2rem;
}
footer {
  text-align: center;
  padding: 2rem;
  color: #888;
  font-size: 0.9rem;
}
footer div {
  margin-bottom: 0.5rem;
}
footer a {
  color: #888;
  text-decoration: none;
}
.header-logo {
  height: auto;
  max-height: 60px;
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
  margin-top: 24px;
}
