* {
    margin: 0;
    padding: 0;
}

/* width */
::-webkit-scrollbar {
    width: 4px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1; 
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #888; 
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555; 
  }

body {
    background: linear-gradient(to bottom, #00d812, #005e08, #000000) fixed;
    color: white;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.all-header {
    background: linear-gradient(to bottom, #00d812, #005e08, #000000);
}

.header-container {
    width: 100%;
    border-bottom: 4px double rgb(0, 255, 42);
    text-align: center;
}

.logo {
    width: 300px;
    height: 80px;
}

.all-content {
    margin: 0px 15%;
}

.container-rtp {
    background: linear-gradient(to bottom, #393939, #000000) fixed;
    text-align: center;
}

.flex {
    display: flex;
    width: 100%;
}

.flex .flex-container {
    text-align: center;
    margin: 10px;
    width: 100%;
}

.box {
    background: linear-gradient(to bottom, #ff0000, #640000);
    padding: 4px;
    box-shadow: 0px 0px 8px 2px red;
    border: 2px solid white;
}

.box .game {
    width: 100%;
    transition: .5s;
}

.box .game-name {
    font-size: 18px;
    font-weight: bolder;
   
}

.percent-txt {
    display: flex;
    position: relative;
}

.percent p {
    position: absolute;
    text-align: center;
    font-weight: bolder;
    font-size: 18px;
    width: 100%;
}

.pola-container {
    background: black;
    text-align: center;
}

.pola-title {
    border-bottom: 2px solid white;
    padding: 5px 0px;
    font-size: 16px;
    font-weight: bolder;
    animation: blink .5s linear infinite;
}

.menu-container{
    background: linear-gradient(to bottom, #3a3a3a, #000000);
}

.btn-area-menu{
    text-align: center;
    width: 100%;
}

.btn-menu{
    background: linear-gradient(to bottom, #00c221, #002e0b);
    padding: 10px 0px;
    font-weight: bolder;
    border-radius: 10px;
    border: 4px double white;
    cursor: pointer;
}

.btn-menu:hover{
    background: #640000;
}

.menu-content{
    padding: 10px 0px;
    cursor: pointer;
    border-bottom: 2px solid #3a3a3a;
}

.menu-content a{
    color: white;
    text-decoration: none;
    font-weight: bolder;
}

.menu-content:nth-child(even):hover{
    background: #3a3a3a;
}

.menu-content:nth-child(odd):hover{
    background: #7c0000;
}

.menu-content:nth-child(even){
    background: #3b0000;
}

.menu{
    height: 0;
    transition: 0.3s;
    border-right: 2px solid #3a3a3a;
    border-left: 2px solid #3a3a3a;
}

@keyframes blink {
    0% {
        color: white;
    }

    100% {
        color: red;
    }
}

.pola,
.pola2,
.pola3 {
    margin: 4px 0px;
    border-bottom: 2px solid white;
}

.percent-bar {
    width: var(--progress);
    height: 100%;
    background: linear-gradient(rgb(28, 121, 0), rgb(43, 255, 0), rgb(28, 121, 0));
    border-radius: 10px;
    background-repeat: repeat;
    box-shadow: 0 0 10px 0px orange;
    animation:
        shine 4s alternate infinite,
        end 1s ease-out 1 7s;
    transition: width 3s ease 3s;
}

.percent {
    background: black;
    border: 1px solid white;
    border-radius: 10px;
}

.btn-area{
    padding: 8px 0px;
}

.btn-area a{
    color: white;
    text-decoration: none;
    font-weight: bolder;
}

.btn{
    background: linear-gradient(to bottom, rgb(43, 255, 0), rgb(3, 99, 0));
    padding: 10px 0px;
    border: 2px solid white;
    box-shadow: 0px 0px 8px 2px white;
    transition: .3s;
}

.btn-place{
    margin: 3px 0px;
    text-align: center;
}

.btn-place a{
    color: white;
    font-weight: bolder;
    text-decoration: none;
}

.btn-log{
    background: linear-gradient(to top, #ff9900, #fbff00);
    border: 4px double white;
    padding: 10px 0px;
    cursor: pointer;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 2px black;
    transition: .3s;
    color: black;
}

.btn-log:hover{
    background: #640000;
}

.btn-reg{
    background: linear-gradient(to top, #ff9900, #fbff00);
    border: 4px double white;
    padding: 10px 0px;
    color: black;
    cursor: pointer;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 2px black;
    transition: .3s;
}

.btn-reg:hover{
    background: #640000;
    color: white;
}

.btn:hover{
    background: #006411;
    transition: .3s;
}

.banner{
    width: 100%;
}

.info{
    display: none;
    padding: 1px 0px;
    color: red;
    font-weight: bolder;
}

.copyright{
    text-align: center;
    padding: 10px 0px;
}

@property --progress {
    syntax: "<length>";
    initial-value: 0%;
    inherits: true;
}

@keyframes shine {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 0 40px;
    }
}

@keyframes end {

    0%,
    100% {
        box-shadow: 0 0 10px 0px orange;
    }

    50% {
        box-shadow: 0 0 15px 5px orange;
    }
}

@media screen and (max-width:1150px) {
    .all-content {
        margin: 0px 5%;
    }
}

@media screen and (max-width:660px) {
    .all-content {
        margin: 0px 5px;
    }
}

@media screen and (max-width:595px) {
    .pola, .pola2, .pola3{
        font-size: 12px;
    }
    .box .game-name{
        font-size: 14px;
    }
    .btn{
        padding: 4px 0px;
        font-size: 12px;
    }
    .percent p{
        font-size: 14px;
    }
    .flex .flex-container{
        margin: 0px;
    }
    .pola-title{
        font-size: 14px;
    }
}

@media screen and (max-width:470px) {
    .pola, .pola2, .pola3{
        font-size: 10px;
    }
    .box .game-name{
        font-size: 12px;
    }
    .percent p{
        font-size: 12px;
        top: 4px;
    }
}