.ccarmox_game_list {
    display: flex;
    margin: auto;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}

.ccarmox_game_box_container:hover .ccarmox_game_box {
    transform: rotateX(5deg) rotateY(-40deg);
}

.ccarmox_game_box_container:hover .ccarmox_game_box_shadow {
    transform: rotateX(90deg) rotateZ(30deg);
}

.ccarmox_game_box_container {
    display: block;
    perspective: 1500px;
    margin-top: 30px;
    margin-bottom: 80px;
    margin-left: 30px;
    margin-right: 30px;
}

.ccarmox_game_box {
    position: relative;
    z-index: 1;
    width: 300px;
    transform-style: preserve-3d;
    transition: transform 1s ease;
    transform: rotateX(0deg) rotateY(-30deg);
}

.ccarmox_game_box__front {
    border-radius: 5px;
    overflow: hidden;
    transform: translateZ(20px);
}

.ccarmox_game_box__edge {
    position: absolute;
    top: 0;
    bottom: 0;
    right: -1px;
    width: 6px;
    background: #62a558;
    transform: rotateY(45deg) translateZ(12px) translateX(-13px);
}

.ccarmox_game_box__side {
    height: 100%;
    width: 40px;
    background: white;
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(to right, #04bc57 0%, #13a437 100%);
    border-radius: 5px;
    transform: rotateY(90deg) translateX(0) translateZ(20px);
}

.ccarmox_game_box__side:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: black;
    opacity: 0.5;
}

.ccarmox_game_box__side:after {
    content: "";
    display: block;
    background: linear-gradient(to right, #0b902e, #0e792b, #075126);
    position: absolute;
    border-radius: 10px;
    top: 20%;
    bottom: 20%;
    left: 20%;
    width: 60%;
}

.ccarmox_game_box_shadow {
    position: absolute;
    width: 300px;
    height: 100px;
    background: radial-gradient(70% 85%, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 100%);
    transform: rotateX(90deg) rotateZ(20deg);
    transition: transform 1s ease;
    filter: blur(16px);
}

.ccarmox_game_box_cover {
    background-color: #39b739;
    padding-bottom: 10px;
}

.ccarmox_game_box_cover img {
    width: 300px;
}

.ccarmox_game_box_logo_container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 38px;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: white;
}

.ccarmox_game_box_price_sticker {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: #f4d03f;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    transform: rotate(15deg);
    border: 3px dashed #c0392b;
}

.ccarmox_game_box_price_sticker_price {
    font-weight: bold;
    font-size: 14px;
    color: #2c3e50;
}

.ccarmox_game_box_price_sticker_original_price {
    text-decoration: line-through;
    font-size: 14px;
    color: #7f8c8d;
}

.ccarmox_game_box_price_sticker_sale_price {
    font-size: 22px;
    color: #c0392b;
}

.ccarmox_game_box_game_title {
    color: #ffffff;
    font-size: clamp(16px, 4vw, 24px);
    font-family: 'Segoe UI', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(29, 255, 44, 0.6);
    letter-spacing: 1px;
    margin: 0;
}

.ccarmox_game_box_cover_group {
    position: relative;
    display: inline-block;
    height: 300px;
    width: 300px;
}

.ccarmox_game_box_cover_group img {
    height: 300px;
    width: 300px;
    display: block;
}

.ccarmox_game_box_cover_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(23, 93, 1, 0.9);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ccarmox_game_box_cover_group:hover .ccarmox_game_box_cover_overlay {
    opacity: 1;
}

.ccarmox_game_box_logo {
    width: 15px;
    height: 15px;
    margin-right: 5px;
    background: white;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.ccarmox_game_box_logo_x {
    position: absolute;
    width: 120%;
    height: 2px;
    background: #39b739;
    transform: rotate(45deg);
    top: 25%;
    left: -10%;
    border-radius: 1px;
}

.ccarmox_game_box_logo_x.invert {
    transform: rotate(-45deg);
    top: 25%;
    left: -10%;
}

.ccarmox_game_box_cover a {
    text-decoration: none;
}