/* Universal */

body {
    background: rgb(40, 16, 36);
    background: linear-gradient(180deg, rgba(40, 16, 36, 1) 0%, rgba(92, 0, 77, 1) 100%);
    background-repeat: no-repeat;
    padding-top: 40px;
    padding-bottom: 0;
    color: #F9D138;
    font-family: 'Kanit', sans-serif;
    overflow: hidden;
}

a {
    text-decoration: none;
}

.copyright {
    font-size: 14px;
    font-weight: 500;
    padding-left: 1%;
    color: white;
    margin: auto;
    position: absolute;
    display: block;
    bottom: 1%;
}

.copyright a {
    color: white;
}

.bg-primary {
    background: #F9D138 !important;
}

.text-primary {
    color: #F9D138 !important;
}

.button-gold {
    background: linear-gradient(180deg, #F9D138 0%, #F49829 100%);
    box-shadow: 0px 0px 9px rgba(253, 249, 58, 0.7);
    text-align: center;
    padding: 10px 20px;
    font-size: 24px;
    font-weight: 600;
    border: 1px solid #F9D138;
    transition: all 0.5s;
}

@media only screen and (max-width: 430px) {
    .button-gold {
        font-size: 3vw;
    }
}

.button-gold:hover {
    box-shadow: 0px 0px 0px rgba(253, 249, 58, 0.7);
    color: white !important;
}

.container {
    max-width: 430px;
}


/* Item */

.block-item {
    margin-bottom: 5%;
}

.link-cover-game {
    margin-bottom: 10%;
}

.cover-game {
    border: 1px solid #F9D138;
    border-radius: 20px;
    filter: drop-shadow(0px 0px 7px #F9D138);
    transition: all 0.5s;
}

.cover-game:hover {
    filter: drop-shadow(0px 0px 0px #F9D138);
}


/* Menu */

.menu {
    margin-bottom: 20px;
    display: flex;
    white-space: nowrap;
}

.menu-item {
    margin-right: 20px;
}

.menu-item h4 {
    display: inline;
}

.menu-item {
    color: #B6B6B6;
    font-weight: 400;
    transition: all 0.5s;
}

.menu-item:hover {
    color: #F9D138;
    font-weight: 600 !important;
    text-decoration: underline;
    text-decoration-color: #F9D138;
    text-decoration-style: solid;
    text-decoration-thickness: 4px;
}

.menu-item.active h4 {
    color: #F9D138;
    font-weight: 600 !important;
    text-decoration: underline;
    text-decoration-color: #F9D138;
    text-decoration-style: solid;
    text-decoration-thickness: 4px;
}

.menu-item:last-child {
    padding-right: 50px;
}

.gradient-menu {
    background: rgb(40, 16, 36);
    background: linear-gradient(270deg, rgb(65 32 39) 30%, rgb(92 0 77 / 0%) 100%);
    width: 30%;
    height: 30px;
    position: absolute;
    top: 40px;
    right: 0;
    text-align: right;
    padding-right: 10px;
}


/* Main */

.font-white {
    color: white
}

.input-container {
    width: 100%;
}

.input-field {
    width: 100%;
}

.input-container input {
    min-height: 43px;
    border: none;
}


/* Set a style for the submit button */

.btn {
    background-color: dodgerblue;
    color: white;
    padding: 15px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    opacity: 0.9;
}

.btn:hover {
    opacity: 1;
}

.icon {
    padding: 10px;
    background: dodgerblue;
    color: white;
    min-width: 50px;
    text-align: center;
    margin-left: -5px;
    border: none;
}

.bg {
    background-size: cover;
    background: url("./img/main-bg.png") top center no-repeat;
}

.bg-2 {
    background-size: cover;
    background: url("./img/bg-2.png") top center no-repeat;
}

.center-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 120vh;
}

.top-50 {
    position: absolute;
    display: block;
    bottom: 40%;
}

.btm-1 {
    position: absolute;
    display: block;
    bottom: 40%;
}

.btm-2 {
    position: absolute;
    display: block;
    bottom: 30%;
}

.btm-3 {
    position: absolute;
    display: block;
    bottom: 20%;
}

footer {
    color: white;
    text-align: center;
    background: #22081F;
    padding: 10px 20px;
    font-size: 12px;
    object-fit: cover;
}

footer p {
    margin-bottom: 0;
}


/* Replace */

.g-5,
.gx-5 {
    --bs-gutter-x: 5% !important;
}

.button-75 {
    align-items: center;
    background-image: linear-gradient(135deg, #f34079 40%, #fc894d);
    border: 0;
    border-radius: 10px;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    font-size: 24px;
    font-weight: 700;
    height: 54px;
    justify-content: center;
    letter-spacing: .4px;
    line-height: 1;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 3px;
    text-decoration: none;
    text-transform: uppercase;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.button-75:active {
    outline: 0;
}

.button-75:hover {
    outline: 0;
}

.button-75 span {
    transition: all 200ms;
}

.button-75:hover span {
    transform: scale(.9);
    opacity: .75;
}

@media screen and (max-width: 991px) {
    .button-75 {
        font-size: 24px;
        height: 60px;
    }
    .button-75 span {
        line-height: 50px;
    }
}