html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    min-width: 100%;
    max-height: 100%;
    max-width: 100%;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    background: #171a21;
    color: #c6d4df;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
}

body, input, button, select, textarea{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
}

.intro{
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #232740;
  border-bottom: 1px solid #585bc5;
  margin-bottom: 32px;
}

.intro .bg{
  position: absolute;
  inset: 0;
  background-image: url(banner.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: .35;
  filter: blur(4px);
}

.intro .view::before {
    content: "";
    opacity: 0.3;
    pointer-events: none;
    background-image: linear-gradient(90deg,rgba(64, 81, 99, 0.9) 1px,#0000 1px),linear-gradient(rgba(64, 81, 99, 0.9) 1px,#0000 1px);
    background-size: 28px 28px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-mask-image: radial-gradient(50% 50%,#000 20%,#0000 100%);
    mask-image: radial-gradient(50% 50%,#000 20%,#0000 100%);
    z-index: 10;
}

.intro .view{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
  max-width: 640px;
  padding: 64px;
}

.intro .view img{
  height: 88px;
  width: auto;
  margin-bottom: 12px;
}

.intro .view > *{
  z-index: 20;
}

.intro .view h1{
  padding: 0;
  margin: 0;
  font-weight: 700;
  font-size: 44px;
  color: #ebedff;
  letter-spacing: 1px;
}

.intro .view h1 b{
  font-weight: 400;
  font-size: 48px;
  color: #7f8eff;
}

.intro .view .divier{
  height: 1px;
  width: 100%;
  max-width: 420px;
  background: #8d90eb7e;
  margin-top: 12px;
  margin-bottom: 12px;
  filter: blur(2px);
}

.intro .view h2{
  padding: 0;
  margin: 0;
  font-weight: 400;
  font-size: 24px;
  color: #d1deff;
  line-height: 28px;
  text-align: center;
  padding: 0px 12px;
  margin: 0;
  margin-top: 16px;
  margin-bottom: 44px;
}

.intro .view h2 b{
  color: red;
}

.intro .bg::before{
  display: block;
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background-color: #232740;
  opacity: .8;
}

.button{
  background-color: #007aff;
  color: #fff;
  height: 60px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 42px;
  padding-right: 42px;
  font-weight: 600;
  border-radius: 8px;
  max-width: 280px;
  width: 90vw;
  transition: opacity 0.1s linear;
  text-decoration: none;
}

.button:hover{
  opacity: 0.75;
  cursor: pointer;
}

.app{
  margin: 0 auto;
  width: 100%;
  max-width: 1080px;
}

.menu,
.games {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.menu{
  margin-bottom: 8px;
  user-select: none;
  padding-top: 12px;
  padding-bottom: 16px;
  position: relative;
}

.menu h1{
  font-weight: 600;
  font-size: 38px;
  flex: 1;
  position: absolute;
  left: 58px;
  padding-left: 16px;
  color: #7f8eff;
  font-family: 'Trebuchet MS', sans-serif;
  letter-spacing: 1px;
}

.menu {
  justify-content: space-between;
  align-items: center;
  padding-left: 12px;
  padding-right: 12px;
}

.menu img{
  height: auto;
  width: 52px;
  -webkit-user-drag: none;
  user-drag: none;
}

.menu a {
  font-size: 15px;
  margin-left: 10px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  transition: opacity 0.1s linear;
}

.menu a:hover{
    opacity: 0.75;
}

.game {
  background-color: #424b714d;
  padding: 16px;
  margin: 0 12px 12px 0;
  margin-bottom: 24px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  margin-right: 0px;
  position: relative;
  border-radius: 6px;
  border: 1px solid #585bc54a;
}

.game *{
  z-index: 2;
}

.game .cover img{
    width: 292px;
    height: 136px;
    border-radius: 6px;
}

.game h2{
    padding: 0px;
    margin: 0px;
    color: #fff;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 16px; 
}

.game .cover {
  margin-right: 22px;
}

.game ul{
    margin: 0px;
    padding: 0px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.game li {
  display: inline-block;
  font-size: 12px;
}

.game li a {
  margin-right: 4px;
  padding: 2px 5px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #b0bbc4;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.1s linear;
  pointer-events: none;
}

/*.game li a:hover {
  background: rgba(255, 255, 255, 0.125);
}*/

.btns{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 24px;
}

.btn {
    padding: 12px 18px;
    border-radius: 5px;
    border: none;
    outline: none;
    background-color: #007aff;
    color: #fff;
    cursor: pointer;
    user-select: none;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 200ms ease;
    text-decoration: none;
}
.btn:hover {
    background-color: #0066ff;
}

@media (orientation: portrait) {
    .game{
        flex-direction: column;
    }

    .game .cover{
        margin-right: 0px;
        width: 100%;
        margin-bottom: 12px;
    }

    .game .cover img{
        width: 100%;
        height: auto;
    }
}