@font-face {
    font-family: Burbank;
    src: url(/fonts/Burbank\ Big\ Condensed\ Bold.ttf);
}

*, ::before, ::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    max-width: 100%;
    width: 100%;
    background-image: url("images/bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: top center;
    color: #fff;
    font-family: sans-serif;
}

a {
    text-decoration: none;
    padding: 20px 30px;
    font-weight: bold;
    color: #000;
}

footer {
    padding: 20px 0;
    background-color: #000;
}

footer span {
    color: #F4D03F;
}

.container {
    max-width: 100%;
    width: 1200px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

img {
    max-width: 100%;
    width: 100%;
}

main {
    display: flex;
    flex-direction: row;
    margin-top: 15px;
    align-items: center;
}

main .content {
    max-width: 100%;
    width: 50%;
}

.left {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo-text p {
    line-height: 1.3em;
    font-size: 1.3em;
}

img.logo {
    width: 86%;
}

.text-3d {
    margin: 3em 0;
}

.button {
    display: flex;
    flex-direction: row;
    gap: 14px;
    justify-content: center;
}

.button a {
    font-size: 2.5em;
    color: #fff;
    font-family: burbank;
    border-radius: 30px;
    width: 100%;
}

.daftar {
    background-color: #08cc18;
    background-image: linear-gradient(180deg, #08cc18 0%, #006d2d 100%);
    text-shadow: 2px 2px #2b7717;
    box-shadow: 0 8px #29880f;
}

.lc {
    background-color: #F4D03F;
    background-image: linear-gradient(180deg, #F4D03F 0%, #ac7000 100%);
    text-shadow: 2px 2px #757717;
    box-shadow: 0 8px #886c0f;
}

.games {
    background-image: linear-gradient(to bottom, #1d1d1d 50%, #000 100%);
    padding-bottom: 10px ;
}

.game-title {
    max-width: 100%;
    width: 100%;
    background-color: #F4D03F;
    background-image: linear-gradient(180deg, #F4D03F 0%, #ac7000 100%);
    padding: 10px 0;
}

h2.text-center {
    max-width: 100%;
    width: 60%;
    border-radius: 1200px;
    border: 1px solid #f0d147;
    box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.493);
    background-image: linear-gradient(180deg, #725b00 0%, #533600 100%);
    margin: 0 auto;
    padding: 12px;
}

.text-center {
    text-align: center;
}

.banner {
    width: 2585px;
    margin: 0 0 -4px 0px;
}

.game-items {
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    margin: 0 auto;
}

.game-items .item {
    padding: 5px 5px;
}

.game-items .item img {
    border-radius: 0.5em;
    box-shadow: 0 2px 5px #000000;
}

.logo-top {
    max-width: 100%;
    width: 350px;
    margin: 0 auto;
    padding: 20px 50px;
    background-color: #000;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
}

.button.mobile{display: none;}

@media (max-width: 768px) {
    main {
        display: flex;
        flex-direction: column;
        margin-top: 20px;
        align-items: stretch;
    }   

    main .content {
        max-width: 100%;
        width: 100%;
    }

    .container {
        padding-top: 0;
    }

    p {
        text-align: center;
    }

    .left {order:2}
    .right {order:1}

    .button.mobile{display: flex;}
    .left .button {display: none;}
    
    .container {
        padding: 15px;
    }

    .button {
        display: flex;
        flex-direction: column;
        padding: 0 20px;
        justify-content: center;
        align-items: center;
    }

    .game-items {
        display: grid;
        border-radius: 1.5em;
        grid-template-columns: 1fr 1fr;
        grid-gap: 0;
        padding: 10px 10px;
        margin: 0;
    }

    .item {
        padding: 5px 10px;
    }

    .text-3d {
        margin: 1em 0;
    }

    .banner {
        margin: 0 0 -64px 0px;
    }
}