/* Nur Mobile und Tablet */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  background-color: #111111;
  /* border: 1px solid red; */
}

/* Hintergrundvideo: z-index 0, position fixed */
.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  object-fit: cover;
  z-index: 0;
  filter: contrast(1.1);
  pointer-events: none;
}

/* Inhalt darüber */
.container {
  position: relative;
  z-index: 1;
  isolation: isolate;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0rem 1.5rem;
  gap: 2.5rem;
  /* background-color: rgba(0, 0, 0, .4); */
}

.logo {
  width: 320px;
  height: auto;
  max-width: 80vw;
  flex-shrink: 0;
}

.buttons {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.5rem;
  width: 100%;
  max-width: 320px;
}

.buttons > .pill {
  align-self: center;
  width: auto;
  max-width: 100%;
  box-sizing: border-box;
  margin-bottom: -15px;
  border-radius: 50px;
  font-size: 0.72rem;
  padding: 3px 10px;
  font-weight: 600;
  text-align: center;
font-family: system-ui, -apple-system, sans-serif;
scale: 0.85;
}

.green {
  background: #00a97c61;
  color: #c1ffe5;
  border: 2px solid #00a984;
}

.red {
  background: #ff353551;
  color: #ffdfdf;
  border: 2px solid #ff2200;
}

.blue {
  background: #009ea96b;
  color: #92fdff;
  border: 2px solid #00eeff;
}

.india {
  background: #1388088d;
  color: #3dfe80;
  border: 2px solid #27e615;
}

/* Zentrierung wie bei align-items: center, aber gleiche Querbreite für alle Kinder (wichtig für iOS WebView / Instagram) */
.buttons > .btn {
  align-self: center;
  width: 90%;
  max-width: 100%;
  box-sizing: border-box;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  height: 42px;
  border-radius: 5px;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-icon svg {
  width: 22px;
  height: 22px;
}

.btn:active {
  transform: scale(0.98);
}

/* Gleiche Breite und Höhe für alle Buttons (bereits über .btn) */
.btn-website {
  background: #009ea9;
  color: #fff;
}

.btn-india {
  background: #138808;
  color: #fff;
}

.btn-tiktok {
  background: #000;
  color: #fff;
}

.btn-instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}

.btn-youtube {
  background: #ff0000;
  color: #fff;
}

.btn-linkedin {
  background: #0A66C2;
  color: #fff;
}

/* Amazon-Button: Shake + Pulsieren alle 3 Sekunden
@keyframes amazon-shake-pulse {
  0%, 80% {
    transform: scale(1) translateX(0);
  }
  85% {
    transform: scale(1.04) translateX(-2px);
  }
  87% {
    transform: scale(1.05) translateX(2px);
  }
  89% {
    transform: scale(1.04) translateX(-1px);
  }
  91% {
    transform: scale(1.05) translateX(1px);
  }
  93% {
    transform: scale(1.03) translateX(0);
  }
  100% {
    transform: scale(1) translateX(0);
  }
} */

.btn-amazon {
  background: #ff9900;
  color: #000;
}

#btn-amazon-us {
  animation: amazon-shake-pulse 3s ease-in-out infinite;
}

/* Copyright unten */
.copyright {
  margin-top: auto;
  padding-top: 0rem;
  padding-bottom: 1rem;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

.useragent-display {
  padding: 0.5rem 0.5rem 1rem;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  word-break: break-all;
  max-width: 100%;
}

/* Tablet: etwas größere Abstände */
@media (min-width: 768px) {
  .container {
    padding: 3rem 2rem;
    gap: 3rem;
  }

  .logo {
    width: 160px;
  }

  .buttons {
    max-width: 400px;
    gap: 1.25rem;
  }

  .btn {
    height: 56px;
    font-size: 1.1rem;
  }

  .btn-icon svg {
    width: 24px;
    height: 24px;
  }
}
