html, body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100vh;
  background-color: #ffffff;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}



.video-container {
  position: relative;
  width: 100%;
  max-width: 360px;
  padding-top: 0; 
  padding: 10px;
}

.player-placeholder {
  width: 100%;
  height: auto;
  background-color: #ffffff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mute-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.mute-overlay h2 {
  background: red;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 18px;
  margin-bottom: 10px;
  text-align: center;
} 

.logos {
  margin: 20px 0;
}

.logos img {
  max-width: 200px;
  width: 100%;
}

footer {
  background: #1a1a1a;
  color: #aaa;
  text-align: center;
  font-size: 12px;
  width: 100%;
}

footer a {
  color: #aaa;
  text-decoration: underline;
  margin: 0 5px;
}

@media (max-width: 480px) {
  .mute-overlay h2 {
    font-size: 16px;
  }
}
