.reviews-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 35vw;
    font-family: 'Bebas Neue', sans-serif;

}


.game-item {
    display: flex;
    align-items: center;
    background-color: #222;
    color: #fff;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 11px;
    box-shadow: 0 0 4px 1px var(--accent-color);
}


.game-icon {
    position: relative;
    width: 60px;
    height: 60px;
    margin-right: 20px;
    box-sizing: border-box;
    border-radius: 5px;
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.game-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    z-index: -1;
    background: linear-gradient(#e76f51, #e76f51);
    border-radius: 8px;
}

.game-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    box-shadow: 0 0 1px 1px var(--accent-color);

}

.game-details {
    flex-grow: 1;
}

.games-container {
    display: flex;
    justify-content: space-between;
    padding: 70px;
}

.games-container2 {
    display: flex;
    justify-content: space-between;
    padding: 70px;
}

.status-box2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px; /* Space between columns and rows */
    width: 100%;
    height: 35vw;
    font-family: 'Bebas Neue', sans-serif;
}

/* ae */


.card {
    transition: transform 0.3s;
    overflow: hidden;
    position: relative;
    border: none;
    border-radius: 10px; /* Add border-radius if present in the provided image */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow to match the design */
}

.card:hover {
    transform: scale(1.05);
}

.card img {
    width: 100%;
    /* Adjust height according to the aspect ratio of the images in the provided design */
    height: auto; 
    object-fit: cover;
}

.card .blur {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    /* Match the gradient height to the design */
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    backdrop-filter: blur(15px); /* Adjust the blur to match the provided image */
    -webkit-backdrop-filter: blur(15px);
}

.card .card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px; /* Add padding to match the design */
    color: white; /* Adjust the color to match the design */
    font-family: 'YourFont', sans-serif; /* Replace 'YourFont' with the actual font from the design */
    font-size: 1.5em; /* Adjust size to match the design */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.card .card-title {
    font-weight: bold;
    margin-bottom: 5px;
}

.card .card-subtitle {
    font-size: 0.875em;
    color: #ccc;
}

.card .card-link {
    background-color: #0062cc;
    color: white;
    text-align: center;
    border-radius: 5px;
    padding: 10px 20px;
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
}

@media (max-width: 992px) {
    
}
/* ae */

.status-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px; /* Space between columns and rows */
    width: 100%;
    height: 35vw;
    font-family: 'Bebas Neue', sans-serif;
}


.game-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.game-status {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.status-circle {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 5px;
    animation: pulse 2s infinite;
}

.status-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
    gap: 20px; /* Adjust the space between columns as needed */
    justify-content: center; /* Center the grid horizontally */
    align-items: start; /* Align grid items to the start of each column */
}

.green {
    background-color: green;
}

.yellow {
    background-color: yellow;
}

.red {
    background-color: red;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}


.reviews-box .reviews-box-title span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2vw;
}

.reviews-box .reviews-box-title span b {
    color: var(--accent-color);
}

.reviews-box .reviews-box-description {
    margin-bottom: 5vw;
}

.reviews-box .reviews-box-description span {
    font-family: 'Inter', sans-serif;
    margin-bottom: 25vw;
    font-size: 0.8vw;
    opacity: 0.8;
}

.reviews-box .reviews-box-review {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5vw;
}

.reviews-box .reviews-box-review .reviews-box-review-content {
    width: 20vw;
    height: 15vw;
    position: relative;
    overflow: hidden;
}

.reviews-box .reviews-box-review .reviews-box-review-content .reviews-box-review-content-avatar {
    position: absolute;
    z-index: 10;
    left: calc(50% - 2vw);
    top: 0.8vw;
}

.reviews-box .reviews-box-review .reviews-box-review-content .reviews-box-review-content-avatar img {
    width: 4vw;
    border-radius: 50%;
    border: 0.15vw solid #ffcd81;
}

.reviews-box .reviews-box-review .reviews-box-review-content .reviews-box-review-content-content {
    display: flex;
    flex-direction: column;
    gap: 0.1vw;
    position: absolute;
    z-index: 5;
    width: 95%;
    height: 75%;
    top: 3vw;
    left: 4%;
    background-color: var(--background-color);
    border: 0.1vw solid #ffcd81;
    border-radius: 0.3vw;
}

.reviews-box .reviews-box-review .reviews-box-review-content .reviews-box-review-content-content .reviews-box-review-content-content-title {
    font-family: 'Bebas Neue', sans-serif;
    margin-top: 2.5vw;
    padding: 0 0.5vw;
}

.reviews-box .reviews-box-review .reviews-box-review-content .reviews-box-review-content-content .reviews-box-review-content-content-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6vw;
    padding: 0 0.5vw;
    height: 5.8vw;
}

.reviews-box .reviews-box-review .reviews-box-review-content .reviews-box-review-content-content .reviews-box-review-content-content-author {    
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
    color: var(--accent-color);
    font-size: 0.7vw;
    padding: 0 0.5vw;
    width: 100%;
}

.reviews-box .reviews-box-review .reviews-box-review-content .reviews-box-review-content-content .reviews-box-review-content-content-author .reviews-box-review-content-content-author-star {
    display: flex;
    flex-direction: row;
    margin-right: 1vw;
}