
@font-face {
    font-family: 'Martel';
    src: url('fonts/martel.eot');
    src: url('fonts/martel.eot?#iefix') format('embedded-opentype'),
         url('fonts/martel.woff2') format('woff2'),
         url('fonts/martel.woff') format('woff'),
         url('fonts/martel.ttf')  format('truetype'),
         url('fonts/martel.svg#Martel') format('svg');
}
:root{
    --col-sm-width: 200px;
    --col-mid-width: 800px;
    --col-margin: 20px;

    --header-color-top: #333333;
    --header-color-bottom: #141414;

    --header-textcolor: #fff;

    --page-backgroundcolor: #0c0c0c;

    --header-textcolor: #dbdbdb;
    --header-textcolor2: #a5a5a5;
    --box-border-color: #000000;
    --box-backgroundcolor: #161616;
    --box-content-padding: 5px;

    --link-color: #efe8d0;

    --linklist-listcolor: #b4b4b4;
    --linklist-listcolor-hover: #efe8d0;
}
*{
    box-sizing: border-box;
}
.display-none {
  display: none !important;
}

.display-inline {
  display: inline !important;
}

.display-block {
  display: block !important;
}
body{
    margin: 0;
    padding: 0;
    background-image: url(images/bg.png);
    background-repeat: no-repeat;
    background-position: center -20px;
    background-color: var(--page-backgroundcolor);

    color: #b4b4b4;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
}
a{
    text-decoration: none;
    font-weight: bold;
    color: var(--link-color);
}
.container{
    width: calc(var(--col-sm-width) + var(--col-sm-width) + var(--col-mid-width) + var(--col-margin) + var(--col-margin));
    margin: 0 auto;
}
.col-left, .col-right{
    width: var(--col-sm-width);
    float: left;
}
.col-mid{
    width: var(--col-mid-width);
    float: left;
    margin: 0 var(--col-margin);
}
.col-left, .col-right, .col-mid{

}
.box{
    margin-bottom: var(--col-margin);
    ---border: 1px solid var(--box-border-color);   
    border-radius: 8px;
    border-width: 4px;
    border-style: solid;
    border-image: url(images/box_border.png) 7 repeat;
    border-image-width: 7px;

    background-color: var(--box-backgroundcolor);
    box-shadow: 0 0px 20px #000000ba;
    position: relative;
}
.box-header{
    width: calc(100% + 18px);
    margin-left: -9px;
    height: 38px;
    display: block;
    background: linear-gradient(var(--header-color-top), var(--header-color-bottom));
    color: var(--header-textcolor);
    border: 1px solid var(--box-border-color);
    border-radius: 3px;
    padding: 0 12px;
    position: relative;
}
.box-header:first-child{
    margin-top: -1px;
}
.box-header::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    transform: rotate(45deg);
    width: 0; 
    height: 0; 
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-bottom: 3px solid var(--box-border-color);
}
.box-header::after{
    content: "";
    position: absolute;
    right: 0;
    bottom: -3px;
    transform: rotate(315deg);
  width: 0; 
  height: 0; 
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-bottom: 3px solid var(--box-border-color);
}
.header-text{
    font-family: 'Martel', serif;
    font-size: 19px;
    line-height: 36px;
    color: var(--header-textcolor);
    font-weight: 800;
    background: linear-gradient(var(--header-textcolor) 28%, var(--header-textcolor2) 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-transform: uppercase;
    filter: drop-shadow(0 1px 0 #000) drop-shadow(1px 0 0 #000) drop-shadow(0 -1px 0 #000) drop-shadow(-1px 0 0 #000);
}
.col-mid .header-text i{
font-size: 17px;
}
.col-right .box-header, .col-left .box-header{
    text-align: center;
}
.col-left .box-header .fa-solid, .col-left .box-header .fa-brands, .col-right .box-header .fa-solid, .col-right .box-header .fa-brands{
    vertical-align: middle;
    left: 5px;
    top: 0;
    background: linear-gradient(var(--header-textcolor) 28%, var(--header-textcolor2) 50%);
    filter: drop-shadow(0 1px 0 #000) drop-shadow(1px 0 0 #000) drop-shadow(0 -1px 0 #000) drop-shadow(-1px 0 0 #000);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    position: absolute;
    font-size: 22px;
    line-height: 36px;
}

.box-content{
    padding: var(--box-content-padding);
}
.footer{
    font-size: 12px;
    text-align: center;
}
.footer .signature{
    opacity: 0.5;
    font-size: 10px;
}
.linklist{
    margin: 0;
    padding: 0;
    list-style: none;
}
.linklist li{
}
.linklist li a{
    display: block;
    width: 100%;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--linklist-listcolor);
    transition: all ease-out .2s;
    margin: 0;
}
.linklist li:last-child{
    border-bottom: none;
}
.linklist li a:hover{
    color: var(--linklist-listcolor-hover);
    padding: 6px 12px 6px 16px;
    background-color: #222222;
    border-bottom-color: transparent;

}
.linklist.visible{
    display: block;
}
.navbar{
    position: fixed;
    left: 0;
    top: 0;
    z-index: 2;
    width: 100%;
    padding: 0;
    background: rgba(0, 0, 0, 0.089);
    backdrop-filter: blur(50px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    height: 60px;
    line-height: 60px;


    border-width: 0 0 4px 0;
    border-style: solid;
    border-image: url(images/box_border.png) 7 repeat;
    border-image-width: 0 0 7px 0;

    box-shadow: 0 0px 20px #000000ba;
}
.navbar .left{
    float: left;
    width: var(--col-sm-width);
}
.navbar .menu{
    float: left;
    margin-left: var(--col-margin);
}
.navbar .menu a{
    height: 59px;
    line-height: 59px;
    padding: 0 15px;
    text-shadow: -1px -1px 0 #000, -1px 0px 0 #000, 1px -1px 0 #000, 0px -1px 0 #000, -1px 1px 0 #000, 0px 1px 0 #000, 1px 1px 0 #000, 1px 0px 0 #000;
    color: #939393;
    display: block;
    transition: all ease .3s;
    float: left;
}
.navbar .menu a:hover{
  background: #ffffff0d;
  color: #fff;
}
.navbar .right{
    float: right;
}
.navbar .right .socials a{
font-size: 28px;
    color: #939393;
    height: 60px;
    width: 60px;
    text-align: center;
    line-height: 60px;
    margin: 0;
    border-radius: 0;
    display: block;
    float: right;
    transition: all ease .2s;
}
.navbar .right .socials a:hover{
   background: #fff2;
   border-radius: 50%;
   color: #fff;
   transform: scale(0.8);
}
.tabs{
    width: 100%;
    border-bottom: 1px solid  var(--box-border-color);
    padding: 7px 0 0 7px;
    background: rgba(255, 255, 255, 0.041);
}
.tabs a{
    display: inline-block;
    background: #fff1;
    opacity: 0.7;
    margin: 0 3px 0 0;
    padding: 10px;
    border: 1px solid var(--box-border-color);
    margin-bottom: -1px;
    color: #fff9;
    font-size: 13px;
    font-weight: 500;
    text-shadow: -1px -1px 0 #000, -1px 0px 0 #000, 1px -1px 0 #000, 0px -1px 0 #000, -1px 1px 0 #000, 0px 1px 0 #000, 1px 1px 0 #000, 1px 0px 0 #000;
}
.tabs a i{
    padding-right: 5px;
}
.tabs a.active{
    opacity: 1;
    border-bottom: 1px solid var(--box-backgroundcolor);
    background: linear-gradient(#fff1, var(--box-backgroundcolor));
}
.tab-content {
    display: none;
}
.tab-content.active{
    display: block;
}
.downloadbtn, .registerbtn{
    width: calc(100%  + 10px);
    display: block;
    padding: 10px 0;
    text-align: center;
    background-position: left -5px;
    background-repeat: repeat-x;
    margin: 0 0 10px -5px;
    font-family: 'Martel';
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;

    border-radius: 8px;
    border-width: 4px;
    border-style: solid;
    border-image: url(images/box_border.png) 7 repeat;
    border-image-width: 7px;
}
.registerbtn{
    background-color: #03b3ff;
    color: var(--page-backgroundcolor);
}
.downloadbtn{
    background: linear-gradient(#cbf578, #7ebb3e, #0f2e14);
    color: #11280e;
    transition: box-shadow ease .2s;
}
.downloadbtn:hover{
  box-shadow: 0 0 5px #a9ff4e inset, 0 0 11px #a9ff4e inset;
}
.changelog_container{
  overflow: hidden;
  height: 172px;
  transition: linear .05s;
  border: 1px solid var(--box-border-color);
  box-shadow: 0 0 10px black;
}
.changelog_container.show{
  height: auto;
  transition: linear .05s;
  overflow: unset;
}
.changelog_item{
  padding: 7px 15px;
}
.changelog_item:nth-child(odd){
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.096), transparent);
}
.changelog_item:nth-child(even){
  background: linear-gradient(90deg, #0001, transparent);
}
.changelog_item .time{
  width: 100px;
  display: inline-block;
  vertical-align: top;
  opacity: 0.7;
}
.changelog_item .changelog_trigger{
  float: right;
  width: 12px;
  margin: 0;
  vertical-align: top;
}
.changelog_item_content{
  display: inline-block;
  width: 600px;
  word-break: break-all;
}
@property --g2 {
  syntax: '<color>';
  initial-value: #0e0e0e;
  inherits: false;
}
.changelog_container .expand{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0 auto;
  height: 80%;
  background: linear-gradient(transparent, var(--g2));
  opacity: 1;
  pointer-events: none;
  transition: --g2 linear .2s;
}
.changelog_container .expand.hide{
  --g2: transparent;
  transition: --g2 linear .2s;
}

.changelog_container .expand a.changelog_expand, .changelog_container .expand a.raid_expand{
  position: absolute;
  display: block;
  width: 30px;
  height: 30px;
  line-height: 28px;
  border-radius: 50%;
  left: calc(50% - 15px);
  bottom: 10px;
  text-align: center;

    background: linear-gradient(#7a7a7a, #363636);
    color: #a3a3a3;
    font-weight: bold;
    font-size: 14px;
    /* text-transform: uppercase; */
    text-shadow: -1px -1px 0 #000, -1px 0px 0 #000, 1px -1px 0 #000, 0px -1px 0 #000, -1px 1px 0 #000, 0px 1px 0 #000, 1px 1px 0 #000, 1px 0px 0 #000;
    transition: background-color linear .2s, color linear .2s, bottom linear .2s;
    border: 1px solid #000000;
  z-index: 999;
    pointer-events: all;

}
.changelog_container .expand a.changelog_expand:hover, .changelog_container .expand a.raid_expand:hover{
  background: #7a7a7a;
    transition: bottom linear .25s;
}
.changelog_container .expand a.changelog_expand.hide, .changelog_container .expand a.raid_expand.hide{
  bottom: -15px;
}
.quicklogin .inputtext{
  margin: 3px 0;
  vertical-align: top;
  background: #ffffff1c;
  padding: 9px 7px;
  border: 1px solid var(--box-border-color);
  color: #adadad;
  box-shadow: -1px -1px 0 #ffffff13 inset, 1px 1px 0 #00000013 inset;
  font-size: 12px;
  border-radius: 0;
  transition: .2s ease;
  width: 100%;
}
.quicklogin .inputtext:focus{
  border-color: #ffd66573;
  background: #fff4b938;
  box-shadow: 0 0 4px #ffd48386;
  color: #d4c8a8;
  outline: none;
}

.quicklogin .inputtext::placeholder{
  color: #ffffff59;
}
.quicklogin .btn{
  width: 50%;
  margin: 3px 0;
  padding: 6px 7px;
  display: inline-block;
}
.quicklogin .btn.login{
    width: calc(50% - 3px);
    margin-right: 3px;
}
.box-footer{
    width: calc(100% + var(--box-content-padding) + var(--box-content-padding));
    margin-left: calc(0px - var(--box-content-padding));
    margin-bottom: calc(0px - var(--box-content-padding));
    text-align: center;
    background: linear-gradient(transparent, #fff1);
    box-sizing: border-box;
    padding: 5px;
    margin-top: var(--box-content-padding);
}
.serverinfo{
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
    border: 1px solid var(--box-border-color);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.281);
}
.serverinfo li{
    list-style: none;
    padding: 3px 0;
    font-size: 12px;
}
.serverinfo li:nth-child(odd){
    background: #1f1f1f;
}
.serverinfo li:nth-child(even){
    background: #272727;
}
.promobox{
    border: 1px solid black;
    box-shadow: 0 0 10px black;
    padding: 10px;
    background: linear-gradient(180deg, #232323, #0000001c);
}
.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  background-color: #000;
  color: #cacaca;
  text-align: center;
  padding: 5px 8px;
  font-size: 13px;
  border-radius: 3px;
  position: absolute;
  width: max-content;
  top: 120%;
  left: 50%;
  transform: translateX(-50%) translateY(-15%);
  opacity: 0;
  z-index: 20;
  transition: all ease .1s;
    line-height: initial;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(5%);
  transition: all ease .2s;
}

.tooltip .tooltiptext::after {
  content: " ";
  position: absolute;
  bottom: 99%;
  display: block;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #000 transparent;
}
.streamWidgetBox{
    width: 180px;
    padding: 0;
    border-radius: 2px;
    /* background: #fff2; */
    background: linear-gradient(0deg, #a480e514, #6b44b5);
    margin-bottom: 5px;
    border: 1px solid var(--box-border-color);
    box-shadow: 0 0 10px #000;
    display: block;
}
.streamWidgetBox .thumb{
  width: 178px;
  height: 100px;
  display: block;
  transition: all ease .1s;
}
.streamWidgetBox .info{
    display: block;
    font-size: 13px;
    border-top: 1px solid var(--box-border-color);
    text-shadow: -1px -1px 0 #000, -1px 0px 0 #000, 1px -1px 0 #000, 0px -1px 0 #000, -1px 1px 0 #000, 0px 1px 0 #000, 1px 1px 0 #000, 1px 0px 0 #000;
    padding: 3px 6px;
    overflow: hidden;
}
.streamWidgetBox .info .name{
  float: left;
  width: 120px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.streamWidgetBox .info .name a{
  color: #fde7ff;
}
@keyframes dott
{
  0%
  {
    outline-color: transparent;
  }
  50%
  {
    outline-color: #b14532;
  }
  100%
  {
    outline-color:  transparent;
  }
}
.streamWidgetBox .info .viewers .dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  outline: 2px solid #b14532;
  background: #660a0a;
  display: inline-block;
  animation: dott 3s infinite;
  margin-left: 4px;
}
.streamWidgetBox .info .viewers{
  float: right;
  font-weight: bold;
}
.infoBox{
    border: 1px solid black;
    box-shadow: 0 0 0px black, 1px 1px 0 #fff2 inset, -1px -1px 0 #0007 inset;
    padding: 10px;
    background: linear-gradient(#232323);
    margin: 15px;
}
.infoBox h2{
  color: rgba(255, 255, 255, 0.87);
  margin: 0 0 10px 0;
}
.refBanner{
    width: 180px;
    height: auto;
    padding: 0;
    border: 1px solid var(--box-border-color);
    box-shadow: 0 0 10px #000;
}
.pg{
  padding: 5px;
}
.pgRow{
    height: 45px;
    padding: 2px 5px;
    display: flex;
    width: calc(100% + 10px);
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    font-weight: 400;
    border: 1px solid var(--box-border-color);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.281);
    margin: 0 0 5px -5px;
}
.pgRow .outfitBox{
  position: relative;
  width: 32px;
  height: 100%;
}
.pgRow .name{
  display: block;
  width: 75px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.pgRow .name span{
  font-size: 10px;
  color: #fff7;
}
.pgRow .value{
  margin-left: auto;
  text-shadow: -1px -1px 0 #000, -1px 0px 0 #000, 1px -1px 0 #000, 0px -1px 0 #000, -1px 1px 0 #000, 0px 1px 0 #000, 1px 1px 0 #000, 1px 0px 0 #000;
}
.pgRow:hover{
  background: #383838 !important;
}
.pg .pgRow:nth-child(odd){
    background: #272727;
}
.pg .pgRow:nth-child(even){
    background: #1f1f1f;
}

/* RWD & mobilemenu */
.menutrigger{
  float: right;
  height: 57px;
  width: 57px;
  text-align: center;
  font-size: 28px;
  position: relative;
}
.menutrigger .fa{
  transition: opacity ease .2s, visibility ease .2s;
  position: absolute;
  left: 0;
  top: 0;
  height: 57px;
  width: 57px;
  line-height: 57px;
}
.menutrigger .fa-xmark, .menutrigger.active .fa-bars{
  visibility: hidden;
  opacity: 0;
}
.menutrigger.active .fa-xmark{
  visibility: visible;
  opacity: 1;
}
.mobilemenu{
  overflow:auto;
  display: none;
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  max-width: unset;
  max-height: unset;
  z-index: 99999999999;
}
.mobilemenu .mobilemenulink{
    box-sizing: content-box;
    width: 252px;
    height: 45px;
    display: block;
    line-height: 45px;
    padding: 0 20px;
    background: #5f5f5f;
    position: relative;
    border-width: 4px;
    border-style: solid;
    border-image: url(images/box_border.png) 7 repeat;
    border-image-width: 7px;
    border-radius: 8px;
}
.mobilemenu .mobilemenulink .header-text{
  line-height: 45px !important;
  
}
.mobilemenu .mobilemenulink.active{
  background: #75736a;
  color: #fff;
}
.mobilemenu .mobilemenulink::after{
  content: "\2b";
  position: absolute;
  height: 46px;
  width: 46px;
  line-height: 46px;
  font-size: 20px;
  text-align: center;
  right: 0;
  top: 0;
  font-family: 'fontawesome';
  color: #000;
  transition: transform ease .3s;
}
.mobilemenu .mobilemenulink.active::After{
  transform: rotate(135deg);
}
.mobilemenu ul{
  list-style: none;
  width: 290px;
  margin: 0 5px;
  padding: 0;
  display: none;
}
.mobilemenu ul li a{
  width: 100%;
  display: block;
  padding: 0 20px;
  height: 30px;
  line-height: 30px;
  font-size: 16px;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.925);
}
.navbar .mobile{
  display: none;
}
  .container.main {
    margin: 300px auto 0 auto;
  }
@media only screen and (max-width: 1240px) {
  .col-left, .col-right {
    display: none;
  }
  .col-mid{
    width: 100%;
    margin: 0 0;
  }
  .container{
    width: 100%;
  }
  .navbar .desktop{
    display: none;
  }
  .navbar .mobile{
    display: block;
  }
  .navbar .left{
    margin-left: 10px;
  }
  .container.main {
    margin: 100px auto 0 auto;
  }
  .changelog_item_content {
    width: 90%;
  }
}