html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

@font-face {
  font-family: 'BarlowSemiCondensed';
  src: url('BarlowSemiCondensed-SemiBold.ttf') format('truetype');
}

.main-layout {
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100vw;
  background: #191919;
}

.headline {
  flex: 0 0 10vh;
  height: 10vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.headline h1 {
  font-family: 'BarlowSemiCondensed', Arial, sans-serif;
  color: #e3130d !important; 
  font-size: 6vw !important;
  margin: 0;
  width: 100%;
  text-align: center;
}

.video-area, #videolocal {
  width: 100vw !important;
  height: 100vh !important;
  background: #000 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: fixed !important;
  top: 0; left: 0;
  z-index: 1;
}

#videolocal video {
  width: 100vw !important;
  height: 100vh !important;
  max-width: 100vw !important;
  max-height: 100vh !important;
  object-fit: cover !important;
  border-radius: 0 !important;
  background: #000 !important;
  display: block !important;
  box-shadow: none !important;
  border: none !important;
}

.controls-row {
  position: fixed !important;
  left: 0; bottom: 0;
  width: 100vw !important;
  z-index: 10 !important;
  background: rgba(0, 0, 0, 0); /* transparent background */
  justify-content: center !important;
  align-items: center !important;
  display: flex !important;
  gap: 2vw !important;
  padding: 2vh 0 !important;
}

.control-btn {
  font-family: 'BarlowSemiCondensed', Arial, sans-serif;
  flex: 1 1 0;
  font-size: 4vw !important;
  padding: 1vw 0 !important;
  margin: 0 1vw;
  border-radius: 5vw;
  border: none;
  background: rgba(255, 255, 255, 0.7); /* Transparenter Hintergrund */
  color: #000000;
  cursor: pointer;
  min-height: 8vh;
  max-height: 16vh;
  display: flex;
  align-items: center;
  justify-content: center;

  /* Glass-Effekt */
  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);

  /* Rahmen + Schimmer */
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.control-btn img {
  margin-right: 10px;  /* ← pushes the text 10px away */
}

