       @font-face {
            font-family: "mfont";
            src: url("/fonts/SeymourOne-Regular.ttf") format("truetype");
        }

        @font-face {
            font-family: "titlefont";
            src: url("/fonts/DelaGothicOne-Regular.ttf") format("truetype");
        }        

        @font-face {
            font-family: "montserrat-med";
            src: url("/fonts/Montserrat-Medium.ttf") format("truetype");
        } 
        @font-face {
            font-family: "montserrat-reg";
            src: url("/fonts/Montserrat-Regular.ttf") format("truetype");
        }     
        @font-face {
            font-family: "montserrat-sembold";
            src: url("/fonts/Montserrat-SemiBold.ttf") format("truetype");
        }             

        html {
            height: 100%;
            padding: 0;
            background: url(/img/fon1.png);
            font-family: "montserrat-med";
            overflow: hidden;
            background: #123;
        }

        body {
            background: url(/img/fon1.png);
            margin: 0;
            min-height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .title {
            font-family: "mfont";
            font-size: 40px;
            color: #196487;
            text-align: center;
            text-shadow: 0 0 34px #00F2FE;
            text-stroke: 2px #B8CAD3;
            -webkit-text-stroke: 2px #B8CAD3;
            margin-top: 26px;
            animation: flicker 2.5s infinite alternate;
        }

        .sub-title {
            font-family: "mfont";
            font-size: 27px;
            color: #00F2FE;
            text-align: center;
            margin-top: -4px;
            margin-left: 33px;
            text-shadow: 0 0 31px #00F2FE;
            text-stroke: 0.1px #D0D4DD;
            -webkit-text-stroke: 1px #000;
            text-stroke: 1px #000;           
        }

        .content {
            position: relative;
            width: 547px;
            max-width: 100%;
            height: 100%;
            box-shadow: 0 0 49px 1px #97CAF4;
            flex-grow: 1;
            background: #123;

	        background: linear-gradient(-45deg, #22292F, #4B50AE, #21292C, #22292F);
	        background-size: 400% 400%;
	        animation: gradient 15s ease infinite;
        }

        @keyframes gradient {
	    0% {
		background-position: 0% 50%;
	    }
	    50% {
		background-position: 100% 50%;
	    }
	    100% {
		background-position: 0% 50%;
	    }
        }

        @keyframes flicker {
    
  0%, 18%, 22%, 25%, 53%, 57%, 100% {

      text-shadow:
      0 0 1px #fff,
      0 0 2px #fff,
      0 0 3px #fff,
      0 0 4px #00F2FE,
      0 0 5px #00F2FE,
      0 0 6px #00F2FE,
      0 0 7px #00F2FE,
      0 0 8px #00F2FE;
  
  }
  
  20%, 24%, 55% {        
      text-shadow: none;
  }    
}


        .game-link {
            color: #ffffff;
            text-shadow: 0 0 17px #00F2FE;
            font-size: 20px;
        }

        .game-section {
            background: #768E9B;
            margin: 10px;
            padding: 12px;
            border: groove #B1C1CE;
            box-shadow: 0 0 11px 1px #4EAADB;
            margin-top: 35px;
            border-radius: 8px;
        }
      

        input[type="text"] {
            background: none;
            border: 1px solid #DBF4FF;
            width: 105px;
            color: inherit;
            text-shadow: inherit;
            font-size: 18px;
            padding: 0 6px;
            outline: none;
        }

        .game-list {
            color: #EAF7FF;
        }

        .game-info {
            margin-top: 11px;
        }

        .game-how-to, .game-link-a {
            text-decoration: none;
            cursor: pointer;
            float: right;
        }



        ::placeholder {
            color: inherit;
            opacity: 0.7;
        }

        summary {
            outline: 0;
            display: inline;
            width: 100%;
        }

        details[open] summary ~ * {
            animation: sweep .5s ease-in-out;
        }

        @keyframes sweep {
            0% {
                opacity: 0;
                margin-top: -10px
            }
            100% {
                opacity: 1;
                margin-top: 0px
            }
        }

        a {
            color: #ffffff;
            text-decoration: none;
            text-align: center;
            text-shadow: 0 0 17px #00F2FE;
        }

        summary::-webkit-details-marker {
            display: none
        }

        .contact-title {
            margin-bottom: 5px;
        }

        #back-link, #help-link {
            font-size: 21px;
            position: absolute;
            text-decoration: underline;
            top: 2px;
            left: 13px;
            text-shadow: 0 0 19px #00F2FE;
            text-stroke: 1px #B8CAD3;
            -webkit-text-stroke: 1px #B8CAD3;
            color: #DBF7FF;
        }

        #help-link {
            font-size: 24px;
            left: auto;
            right: 13px;
            top: 5px;
        }

        #help {
            visibility: hidden;
            position: fixed;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.7);
            transition: opacity 500ms;
            opacity: 0;
            z-index: 1;
        }

        #help:target {
            visibility: visible;
            opacity: 1;
        }

        #help-popup-content {
            margin: 70px auto;
            padding: 20px;
            background: #373C49;
            color: white;
            border-radius: 5px;
            width: 460px;
            position: relative;
            transition: all 0.3s ease-in-out;
            margin-top: 60px;
        }

        #help:target #help-popup-content {
            margin-top: 70px;
        }

        #help-popup-close {
            position: absolute;
            right: 18px;
            top: 10px;
            text-decoration: none;
            font-size: 24px;
            font-weight: bold;
            font-family: Tahoma, Arial, sans-serif;
            text-shadow: none;
        }

        .help-title {
            margin: 6px 0;
            margin-top: 30px;
            font-weight: bold;
        }

        .help-title:first-child {
            margin-top: 20px;
        }

        .stats {
            position: absolute;
            right: 14px;
            color: #ADB9CE;
            text-shadow: 0 0 3px #327DFF;
        }

        .stats span {
            font-size: 16px;
        }

        .stats i {
            font-size: 20px;
            cursor: default;
            position: relative;
            top: 4px;
        }

        .stats-users-icon {
            left: 3px;
            font-size: 22px;
        }

        .mainimg {
            width: 250px;
            height: 250px;
            background-image: url(/img/main.png);
            background-repeat: no-repeat;
            background-size: cover;
            margin: 0 auto;
        }    
        .gameimg-alias {
            width: 200px;
            height: 200px;
            background-image: url(/img/alias/alias_icon.png);
            background-repeat: no-repeat;
            background-size: cover;
            margin: 0 auto;
        }             

        .host-users-icon {
            font-size: 16px;
            vertical-align: middle;
        }

        #help-popup-bg {
            position: fixed;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            cursor: default;
        }

        @media (min-height: 0px) and (max-height: 540px) {
            #help-popup-content, #help:target #help-popup-content {
                margin: 10px auto;
                width: 90%;
                padding: 1px 14px 14px;
            }

            .help-title {
                margin-top: 15px;
            }
        }

        .rules {
            display: none;
        }

        .rooms {
            display: none;
        }

        .rooms table {
            margin-top: 10px;
            width: 100%;
        }

        .rooms table i {
            cursor: default;
            vertical-align: text-bottom;
        }

        .rooms td {
            background: #6F838E;
            padding: 0 4px;
        }

        .table-players {
            font-size: 20px;
            white-space: nowrap;
            text-align: right;
            width: 40px;
        }

        .table-players i {
            font-size: 21px;
            vertical-align: text-bottom;
        }

        .table-audio img {
            vertical-align: middle;
        }

        .table-audio {
            width: 24px;
            text-align: center;
        }

        .rooms td {
            word-break: break-word;
        }

        .donate {
            position: absolute;
            top: 0;
            right: -141px;
            margin: 7px;
            padding: 9px;
            background: #768E9B;
            border: double #B1C1CE;
            box-shadow: 0 0 11px 1px #4EAADB;
            border-radius: 5px;
            color: #DBF7FF;
            text-decoration: none;
            display: none;
        }

        img.boosty {
            width: 124px;
            margin-top: -4px;
        }
        .game-section.boosty {
            padding: 5px 0;
        }
        .game-section.discord {
            padding: 8px 0;
        }
        .updates {
            position: absolute;
            left: 15px;
            top: 143px;
            color: #DBF7FF;
            display: flex;
            align-items: center;
        }

        @media (max-width: 835px) {
            .donate {
                left: 3px;
                right: auto;
                top: 104px;
            }

            .updates {
                top: 7px;
                justify-content: right;
                box-sizing: border-box;
                right: 7%;
                left: auto;
            }
        }

        .donate img {
            height: 20px;
            vertical-align: sub;
            margin-right: 5px;
        }

        .game-icon {
            height: 40px;
            vertical-align: middle;
            margin-top: -5px;
            filter: drop-shadow(0px 0px 3px #ADF6FF);
            margin-right: 6px;
        }

        .game-section:target {
            box-shadow: 0 0 11px 1px #ffffff;
        }

        .rules .material-icons {
            font-size: 16px;
            vertical-align: middle;
        }

        .updates svg {
            margin-right: 4px;
            color: #ADB9CE;
        }    

         .game-name {
            font-family: "titlefont";
            font-size:15px;
            line-height:30px;
            color: #111111;
            text-decoration: none;
            cursor: pointer;

        }  

        .game-desc {
            font-family: "montserrat-reg";
            font-size:14px;
            line-height:30px;
            color: #111111;
            text-decoration: none;
            cursor: pointer;
            padding-left: 5px;
        }   