    /* brand name */
    
    .logo {
        justify-content: center;
        align-items: center;
        flex-direction: column;
        display: flex;
    }
    
    .name_brand {
        font-size: 17px;
    }
    /* Content Search */
    
    .content-search {
        position: absolute;
        width: 400px;
        height: 400px;
        background-image: url(../img/bg.png);
        margin-top: 5px;
        z-index: 100 !important;
        display: none;
        z-index: 1;
        padding: 10px 10px;
        display: flex;
        flex-wrap: wrap;
        overflow: auto;
        align-items: center;
        justify-content: space-around;
        column-gap: 10px;
        row-gap: 10px;
    }
    
    .content-search a {
        text-decoration: none;
        flex-basis: 23%;
        height: 150px;
        transition: .3s linear;
    }
    
    .content-search a:hover {
        scale: 1.02;
    }
    
    .content-search a .image_result {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .content-search a .image_result img {
        border-radius: 10px;
        width: 100px;
        height: 100px;
    }
    
    .content-search a .name_result {
        text-align: center;
    }
    
    .not-found p {
        position: absolute;
        z-index: 3;
        font-size: 20px;
        font-weight: 700;
        color: #262b3f;
    }
    
    .not-found {
        display: none;
        position: absolute;
        z-index: 100 !important;
    }
    /* Game Main */
    
    .game-prev {
        box-shadow: 0 2px 3px rgba(0, 0, 0, .07);
        border-radius: 10px;
        padding: 10px;
        background: #fff;
        position: relative;
    }
    /* Detail Game */
    
    .desc-game {
        font-size: large;
    }
    
    .breadcrumbs__item {
        font-size: 20px;
        text-transform: uppercase;
    }
    
    .breadcrumbs__item span {
        font-size: 20px;
        text-transform: uppercase;
    }