
    * {
        box-sizing: border-box;
    }
    body {
        background: #4b0202;
        background: linear-gradient(to bottom, #4b0202 0%, #111111 100%);
        color: #fff;
        font-family: rubik, sans-serif;
    }
    header {
        background: #4b0202;
        background: linear-gradient(to bottom, #4b0202 0%, #111111 100%);
        border-bottom: 2px solid goldenrod;
    }
    header .header-wrapper {
        margin: 0 auto;
        max-width: 960px;
    }
    header .header-wrapper .logo {
        display: flex;
        justify-content: center;
        position: relative;
    }
    .nav {
        background: #4b0202;
        background: linear-gradient(to bottom, #4b0202 0%, #111111 100%);
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 99;
        border-top: 1px solid goldenrod;
    }
    .nav .menu {
        display: flex;
        justify-content: space-around;
        padding: 5px 0;
    }
    .nav .menu a {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: #fff;
        max-width: 75px;
        font-size: 12px;
        text-decoration: none;
    }
    .nav .menu amp-img {
        max-width: 30%;
        margin-bottom: 5px;
    }
    .container {
        margin: 0 auto;
        padding: 0 10px;
        max-width: 960px;
    }
    .content {
        margin: 5px auto;
    }
    .header-text {
        position: relative;
        display: block;
    }
    .banner {
        position: relative;
    }
    .banner-wrapper {
        padding: 5px 0;
    }
    .text-center {
        text-align: center;
    }
    .title {
        text-align: center;
        font-weight: 600;
        border: none;
    }
    .title h2 {
        margin: 0;
        padding: 0;
    }
    a {
        color: #fab907;
    }
    h1 {
        font-size: 1.7em;
        margin-top: 25px;
        margin-bottom: 10px;
        text-align: center;
    }
    h2 {
        font-size: 1.5em;
    }
    h3 {
        font-size: 1.1em;
        font-weight: 600;
    }
    h4 {
        font-size: 1em;
    }
    p{
        text-align: center;
    }
    .time {
        font-size: 16px;
        text-align: center;
        color: #b9b9b9;
        margin-bottom: 25px;
    }
    .btn-body {
        margin: 15px -5px;
        position: relative;
        display: flex;
    }
    .thumbs {
        position: relative;
        text-align: center;
    }
    .btn-body .btn-items {
        margin: 0 5px;
        width: 100%;
        font-size: medium;
    }
    .btn-body .btn-items a {
        text-decoration: none;
        width: 100%;
        padding: 15px 5px;
        color: gold;
        background: #4b0202;
        background: linear-gradient(to bottom, #111111 0%, #4b0202 100%);
        border: 1px solid goldenrod;
        border-radius: 10px;
        display: inline-block;
        text-align: center;
        text-shadow: 0 1px 3px rgb(0 0 0 / 75%);

    }


    .mt-50 {
        margin-top: 50px;
    }
    footer {
        padding: 15px 5px;
        margin-bottom: 65px;
    }
    footer .footer-text {
        text-align: center;
    }
    .breadcrump-list {
        text-align: center;
        color: #fff;
    }
    .breadcrump-list ul {
        padding: 10px 16px;
        list-style: none;
    }
    .breadcrump-list ul li {
        display: inline;
        font-size: 18px;
    }
    .breadcrump-list ul li + li:before {
        padding: 8px;
        color: #fff;
        content: "\003e";
    }
    .breadcrump-list ul li a {
        color: #ffd386;
        text-decoration: none;
    }
    .mt-10 {
        margin-top: 50px;
    }
    article header {
        background-color: transparent;
        box-shadow: none;
    }

    blockquote {
        quotes: "“" "”" "‘" "’";
        color: #b9b9b9;
        text-align: center;
        margin-bottom: 25px;
    }
    blockquote::before {
        content: open-quote;
    }
    blockquote::after {
        content: close-quote;
    }
    .tada {
        -webkit-animation-name: tada;
        animation-name: tada;
        -webkit-animation-duration: 1s;
        animation-duration: 1s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        animation-iteration-count: infinite;
    }
    @-webkit-keyframes tada {
        0% {
            -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
        }
        10%,
        20% {
            -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
            transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
        }
        30%,
        50%,
        70%,
        90% {
            -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        }
        40%,
        60%,
        80% {
            -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        }
        100% {
            -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
        }
    }
    @keyframes tada {
        0% {
            -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
        }
        10%,
        20% {
            -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
            transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
        }
        30%,
        50%,
        70%,
        90% {
            -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        }
        40%,
        60%,
        80% {
            -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        }
        100% {
            -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
        }
    }
    .center {
        transform: scale(1.5) translateY(-5px);
        background: center no-repeat;
        background-size: contain;
        background-color: inherit;
        border-radius: 50%;
    }
    article a,
    footer a {
        text-decoration: none;
    }
    article table {
        width: 100%;
        text-align: center;
    }
    article table th {
        border: 1px solid #fff;
    }
    @media only screen and (max-width: 720px) {
        .box-games-wrapper {
            justify-content: center;
        }
        .box-games-wrapper .box-games {
            width: 33%;
        }
        .box-games .rtp-box .txt {
            font-size: 12px;
        }
        .games-name p {
            font-size: 12px;
        }
        .content table td:first-child {
            width: 30%;
        }
    }
