/* 直立方向 */
@media screen and (orientation:portrait) {
    .landscapeAlertList {
        color: white;
        font-weight: bold;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
        width: 80%;
        padding: 20px;
        text-align: center;
    }
}

/* 水平方向 */
@media screen and (orientation:landscape) {
    .landscapeAlertList {
        visibility: hidden;
        display: none;
    }
}

body {
    padding: 0px;
    margin: 0px;
    width: 100%;
    height: 100vh;
    background: rgb(12 11 11 / 79%);
}

video {
    max-width: 100%;
    max-height: 100%;
    bottom: 0;
    left: 0;
    margin: auto;
    overflow: auto;
    position: absolute;
    right: 0;
    top: 0;
    -o-object-fit: contain;
    object-fit: contain;
}

.hitBtn {
    position: absolute;
    bottom: 0;
    left: 20px;
}

.shootingBtn {
    position: absolute;
    bottom: 0;
    right: 20px;
}

.hide {
    display: none;
}

.key {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    --clay-background: #ebebeb;
    --clay-border-radius: 15px;
}

.key:hover {
    cursor: pointer;
    transition: 0.3s;
    --clay-shadow-inset-primary: 0 0 5px 5px #d3d3d3;
}


/* CSS */
.button-82-pushable {
  position: relative;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  outline-offset: 4px;
  transition: filter 250ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-82-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: hsl(0deg 0% 0% / 0.25);
  will-change: transform;
  transform: translateY(2px);
  transition:
    transform
    600ms
    cubic-bezier(.3, .7, .4, 1);
}

.button-82-edge {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  border: solid 1.5px;
  background: linear-gradient( 
      to left, 
      hsl(26deg 45% 16%) 0%, 
      hsl(26deg 35% 32%) 8%, 
      hsl(26deg 35% 32%) 92%, 
      hsl(26deg 46% 16%) 100% );
}

.button-82-front {
  display: block;
  position: relative;
  padding: 5px 24px;;
  border-radius: 12px;
  font-size: 1.1rem;
  color: black;
  font-weight: bold;
  background: hsl(26deg 35% 58%);;
  border: solid 1.5px;
  will-change: transform;
  transform: translateY(-4px);
  transition:
    transform
    600ms
    cubic-bezier(.3, .7, .4, 1);
    
}

@media (min-width: 768px) {
  .button-82-front {
    font-size: 1.25rem;
    padding: 12px 42px;
  }
}

.button-82-pushable:hover {
  filter: brightness(110%);
  -webkit-filter: brightness(110%);
}

.button-82-pushable:hover .button-82-front {
  transform: translateY(-6px);
  transition:
    transform
    250ms
    cubic-bezier(.3, .7, .4, 1.5);
}

.button-82-pushable:active .button-82-front {
  transform: translateY(-2px);
  transition: transform 34ms;
}

.button-82-pushable:hover .button-82-shadow {
  transform: translateY(4px);
  transition:
    transform
    250ms
    cubic-bezier(.3, .7, .4, 1.5);
}

.button-82-pushable:active .button-82-shadow {
  transform: translateY(1px);
  transition: transform 34ms;
}

.button-82-pushable:focus:not(:focus-visible) {
  outline: none;
}