        @layer utilities {
            .content-auto {
                content-visibility: auto;
            }
            .text-shadow {
                text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            }
            .card-hover {
                transition: all 0.3s ease;
            }
            .card-hover:hover {
                transform: translateY(-8px) scale(1.02);
            }
            .nav-item {
                position: relative;
            }
            .nav-item::after {
                content: '';
                position: absolute;
                width: 0;
                height: 2px;
                bottom: -2px;
                left: 0;
                background-color: #fff;
                transition: width 0.3s ease;
            }
            .nav-item:hover::after {
                width: 100%;
            }
            .cloud {
                position: absolute;
                background: white;
                border-radius: 50%;
                box-shadow: 
                    0 8px 5px rgba(0, 0, 0, 0.1);
                animation: cloudMove 20s linear infinite;
            }
            .cloud:before, .cloud:after {
                content: '';
                position: absolute;
                background: white;
                border-radius: 50%;
            }
            .cloud:before {
                width: 70%;
                height: 70%;
                top: -40%;
                left: 15%;
            }
            .cloud:after {
                width: 50%;
                height: 50%;
                top: -25%;
                right: 15%;
            }
            .grass {
                background-image: 
                    linear-gradient(to bottom, #52c41a 50%, #389e0d 100%);
            }
            .cartoon-button {
                position: relative;
                border-radius: 50%;
                box-shadow: 0 5px 0 rgba(0,0,0,0.2);
                transition: all 0.1s ease;
            }
            .cartoon-button:active {
                transform: translateY(4px);
                box-shadow: 0 1px 0 rgba(0,0,0,0.2);
            }
            .search-popup {
                transform: scale(0);
                opacity: 0;
                transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                transform-origin: top right;
            }
            .search-popup.active {
                transform: scale(1);
                opacity: 1;
            }
        }
        
        
        
        
.pregame-main {
    width: 100%;
    height: max-content;
    min-width: 340px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-direction: column;
    text-align: center;
    box-sizing: border-box;
    margin-bottom: 15px;
    padding: 15px 0 15px;
    overflow: hidden
}

.pregame-bg {
    width: 90%;
    height: 90%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px
}

.blurred-img {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    z-index: 0;
    background-size: 100% auto;
    background-position: center
}

@media only screen and (max-width: 500px) {
    .blurred-img {
        background-size:auto 100%
    }
}

.blurred-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: .2
}

.game-box {
    position: absolute;
    height: 100%;
    aspect-ratio: 181/150;
    background-repeat: no-repeat;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    align-items: center;
    justify-content: center
}

.game-box-svg {
    width: 100%;
    height: 100%
}

.game-box-opacity {
    cursor: pointer
}

.game-box-opacity+div {
    pointer-events: none
}

@media (hover: hover) {
    .game-box-opacity:hover {
        opacity:.6
    }

    .game-box-opacity:hover+div {
        opacity: .6
    }
}

.play-btn-img {
    position: absolute;
    width: 80px;
    pointer-events: none;
    z-index: 3;
    bottom: -20px;
    right: -60px
}

.pregame-back {
    height: 100%;
    width: 100%
}

.pregame-name {
    font-size: 18px;
    margin: 30px 0 0;
    font-weight: 700
}

.pregame-img-container {
    position: relative;
    width: 70%;
    max-width: 293px;
    z-index: 3;
    margin-top: 68px
}

.pregame-main .pregame-info-container {
    z-index: 3;
    position: absolute;
    top: 8%;
    pointer-events: none;
    width: calc(90% - 12px)
}

.pregame-img-container img {
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    width: 100%
}

.pregame-text {
    padding: 0 20px;
    font-size: 14px;
    max-height: 32px;
    overflow: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none
}

.pregame-text::-webkit-scrollbar {
    display: none
}

.pregame-name {
    font-size: 18px;
    margin: 15px 0 -15px;
    font-weight: 700
}

.pregame-img-container {
    position: relative;
    width: 50%;
    max-width: 200px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center
}

.GameNameText {
    display: flex;
    align-items: center;
    justify-content: center
}

.GameNameText-span {
    vertical-align: middle;
    color: #fff;
    font-size: 16px;
    font-weight: bolder;
    line-height: 30px;
    width: 100%;
    max-width: 100%;
    height: 30px;
    margin-top: -10px;
    overflow: hidden;
    display: inline-block;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical
}

.bottom-info {
    background-color: #29cedd;
    color: #000;
    text-align: left;
    padding: 30px 20px;
    border-radius: 10px;
    margin: 10px 0;
    box-sizing: border-box
}

@media only screen and (max-width: 700px) {
    .pregame-main {
    }
}

@media only screen and (max-width: 500px) {
    .pregame-name {
        font-size:14px;
        margin: 10px 0 -3px
    }
}

.play-btn {
    position: absolute;
    bottom: -33px;
    right: -65px;
    z-index: 1000
}

.play-triangle {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ef574f;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    box-shadow: inset 0 -2px 0 0 #db2e27
}

.play-triangle .triangle-svg {
    margin-left: 3px
}







