.banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.banner video {
  width: 100%;
  height: 100%;
  display: block;
}

.unmute-button {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid white;
  color: white;
  padding: 10px 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
}
.unmute-button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.unmute-button .button-label {
  white-space: nowrap;
}
.unmute-button:hover {
  background: rgba(0, 0, 0, 0.8);
}
.unmute-button:active {
  transform: scale(0.95);
}
@media (max-width: 600px) {
  .unmute-button {
    padding: 8px 12px;
    font-size: 12px;
    gap: 6px;
  }
  .unmute-button svg {
    width: 16px;
    height: 16px;
  }
}

/*# sourceMappingURL=home.css.map */