body { padding: 0; margin: 0 }

:root {
  --canvas_width:  1152px; 
  --canvas_height: 648px; 

  --white: #FBFDF7;
  --blue: #64A8D3;
  --green: #9ACC50;

  --regular-font-size: 22px;
  --strong-font-size: 26px;
}


#unity-container { position: absolute }
#unity-container.unity-desktop { left: 50%; top: 50%; transform: translate(-50%, -50%) }
#unity-container.unity-mobile { width: 100%; height: 100% }
#unity-canvas { background: #231F20 }
.unity-mobile #unity-canvas { width: 100%; height: 100% }
#unity-loading-bar { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); display: none }
#unity-logo { width: 154px; height: 130px; background: url('unity-logo-light.png') no-repeat center }
#unity-progress-bar-empty { width: 141px; height: 18px; margin-top: 10px; background: url('progress-bar-empty-light.png') no-repeat center }
#unity-progress-bar-full { width: 0%; height: 18px; margin-top: 10px; background: url('progress-bar-full-light.png') no-repeat center }
#unity-footer { position: relative }
.unity-mobile #unity-footer { display: none }
#unity-webgl-logo { float:left; width: 204px; height: 38px; background: url('webgl-logo.png') no-repeat center }
#unity-build-title { float: right; margin-right: 10px; line-height: 38px; font-family: arial; font-size: 18px }
#unity-fullscreen-button {position:absolute; right: -40px; width: 38px; height: 38px; background: url('fullscreen-button.png') no-repeat center }
#unity-warning { position: absolute; left: 50%; top: 5%; transform: translate(-50%); background: white; padding: 10px; display: none }
#wax-login { position: absolute; left: 50%; top: 5%; transform: translate(-50%); background: none; padding: 10px; display: none }

@media (prefers-color-scheme: dark) {
  #unity-logo {  
    background: url('unity-logo-dark.png') no-repeat center 
  }
  #unity-progress-bar-empty { 
    background: url('progress-bar-empty-dark.png') no-repeat center 
  }
  #unity-progress-bar-full {  
    background: url('progress-bar-full-dark.png') no-repeat center 
  }

}

#wax-login-button { 
  width: 300px;
  height: 50px;
  background: url('wallet.png') no-repeat center;
  background-size: contain;
  border: none;
}

#wax-login-button:hover,
#wax-login-button:focus {
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
}

#wax-login-button:hover {
  transform: translateY(-1px);
}

#wax-login-button:active {
  box-shadow: rgba(0, 0, 0, .06) 0 2px 4px;
  transform: translateY(0);
}

#wax-verification-button {
  align-items: center;
  background-clip: padding-box;
  background-color: #fa6400;
  border: 1px solid transparent;
  border-radius: .25rem;
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-family: system-ui,-apple-system,system-ui,"Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  line-height: 1.25;
  margin: 0;
  min-height: 3rem;
  padding: calc(.875rem - 1px) calc(1.5rem - 1px);
  position: relative;
  text-decoration: none;
  transition: all 250ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: baseline;
  width: auto;
}

#wax-verification-button:hover,
#wax-verification-button:focus {
  background-color: #fb8332;
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
}

#wax-verification-button:hover {
  transform: translateY(-1px);
}

#wax-verification-button:active {
  background-color: #c85000;
  box-shadow: rgba(0, 0, 0, .06) 0 2px 4px;
  transform: translateY(0);
}


@font-face {
    font-family: 'Oswald';
    src: url('OswaldFont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}




  body,html{
    margin:0;
    padding: 0;
  }
  body{
    background-color: #26123B;
    min-height: 100vh;
    display: flex;
  }

  #unity-canvas{
    width: var(--canvas_width)!important;
    height: var(--canvas_height)!important;
    background-color: #222131;
  }
  .canvas-container{
      width: var(--canvas_width)!important;
       height: var(--canvas_height)!important;
       position: relative;
  }
  .container{
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .header{
    display: grid;
    height: 75px;
    grid-template-columns: 1fr 150px 1fr;
    justify-content: space-around;
    justify-items: center;
    align-items: center;
    background: linear-gradient(90deg, transparent 10%, #44276A 50%, transparent 90%);
    padding-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .header .center{
    width:150px;
  }
  .body{
    display: flex;
    flex-grow: 1;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer{
    display: flex;
    background: linear-gradient(90deg, transparent 10%, #44276A 70%, transparent 90%);
    height: 100px;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
  }

  .footer .left, .footer .right{
    display: flex;
    flex-direction: row;
    align-items: flex-end;
  }

  .header::after, .footer::before{
    content: '';
    width: 100%;
    height: 1px;
    background: radial-gradient(rgba(48, 47, 63, 1), rgba(48, 47, 63, 0));
    position: absolute;
    align-self: flex-end;
  }

  .footer::before{
    align-self: flex-start;
  }

  .logo{
    width: 150px;
    background-image: url(logo.png);
    background-size: 150px 150px;
    background-position: center center;
    background-repeat: no-repeat;
    height: 75px;
  }

  .btn{
    color: #26123B;
    height: 35px;
    border-radius: 50px;
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 700;
    font-size: 15px; 
    display: flex;
    flex-direction: row;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    vertical-align: center; 
    justify-content: center;
    justify-items: center;
    padding-left: 14px;
    padding-right: 14px;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
  }

  .btn.return{
    background: #A550F5;
    color: white;
    padding-right: 29px;
  }
  .btn.return::before{
    width: 13px;
    background: url(chevron-left.svg);
    background-size: cover;
    height: 19px;
    background-repeat: no-repeat;
    content: '';
    margin-right: 20px;
  }
  .btn.submit-feedback{
    background: #FFE34D;
  }

  .x, .discord, .medium, .youtube, .tiktok{
    width: 28px;
    height: 28px;
    margin: 7px;
    display: flex;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .x{
    background-image: url("x.svg");
  }
  .discord{
    background-image: url("discord.svg");
  }
  .medium{
    background-image: url("metro.svg");
  }
  .youtube{
    background-image: url("youtube.svg");
  }
  .tiktok{
    background-image: url("tiktok.svg");
  }

  .policy, .terms{
    padding-bottom: 4px;
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 100%; 

    display: flex;
    align-items: flex-end;
    text-align: center;

    text-decoration: none;

    color: #A550F5;
  }

  .policy{
    margin-left: 42px;
  }
  .terms{
    margin-left: 18px;
  }
  .copyright-container{
    display: grid;
    grid-template-rows: 1fr 1fr;
    align-items: center;
  }
  .copyright{ 
    color: #A550F5;
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 300;
    font-size: 10px;
    line-height: 100%;
    grid-column: 1 / 3;
  }

  .rocks-play{
    display: flex;
    width: 82px;
    height: 39px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("rocksplay-logo.svg");
    background-size:contain;
  }
  .tyranno{
    display: flex;
    width: 90px;
    height: 23px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("tyranno-logo.svg");
    background-size: contain;
  }
  .wax-login{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
/*    bottom: 0;*/
    margin: auto;
  
    background-color: #F96400;
    color: #fff;
    border-radius: 3px;
    width: 150px;
  }


  .spider-background{
    background-image: url("spider-bg.png");
    background-size: 1920px 1080px;
    background-position: right top;
    flex:1;

    background-repeat: no-repeat;
    max-width: 1920px;
    margin: 0 auto;
    min-width: 820px;
    display: flex;
    justify-content: flex-end;
    
  }

  .content{
    display: grid;
    grid-template-columns: 408px 320px;
    margin-top: 480px;
    margin-right: 42px;
    gap: 39px;
  }

  .buttons{
    display: grid;
    grid-template-rows: 55px 55px 51px 330px;
    justify-items: center;
    gap: 13px;
    margin-top: 32px;
  }

  .button{
    --color: gray;

    font-family: Oswald;
    font-size: var(--strong-font-size);
    color: var(--white);

    box-shadow: 1px 7px 8px rgba(0, 0, 0, 0.6);
    background-color: var(--color);
    width:200px;
    border-radius: 10px;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;

    cursor:pointer;
    text-decoration:none;
  }

  .button:hover{

  }

  .button:active{
    --color: gray;
  }

  .green{
    --color: var(--green);
  }

  .blue{
    --color: var(--blue);
  }

  .buttons strong{
    color: var(--white);
    align-self: flex-end;
    font-size: var(--strong-font-size);
    font-family: Oswald;
  }

  .buttons ol{
    color: var(--white);
    font-size: var(--regular-font-size);
    font-family: Oswald; 
    opacity: 0.7;
    line-height: 32px;
    margin-top: -16px;
  }

  .left-side .column{
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    display: flex;
  }

  .left-side .download-buttons{
    display: grid;
    grid-template-rows: subgrid;
    gap: 13px;
  }

  .left-side .button{
    width:160px;
  }
