.blog-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 1% auto 0 auto;
    max-width: 1200px;
}
.blog-item {
    width: 300px;
    height: 300px;
    text-align: center;
    overflow: hidden;
    display: flex;
    border-radius: 30px;
    flex-direction: column;
    justify-content: space-between;
    background-color: rgba(13, 19, 33, 100);
}
.blog-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    margin-bottom: 10px;
}
.blog-item h3 {
    font-size: 30px;
}
.blog-item p {
    font-size: 14px;
    color: #555;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
}
.blog-item small {
    font-size: 12px;
    color: #777;
}
.login-logo {
    height: auto;
    width: 150px;
}
        .status-box {
            width: 300px;
            padding: 15px;
            background-color: #111111;
            color: white;
            font-size: 20px;
            font-weight: bold;
            border-radius: 5px;
            margin: 10px auto;
            text-align: center;
        }
        .status-box p {
            font-size: 16px;
            color: #ddd;
            margin-top: 8px;
            font-weight: normal;
        }
.game-box {
    background-color: #111111; /* Green background */
    padding: 15px;
    margin: 10px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 400px; /* Adjust width as needed */
    font-weight: bold;
    font-size: 18px;
}

.game-name {
    color: white;
    margin-left: 10px;
}

.game-status {
    margin-right: 10px;
}
.game-container {
    display: grid;
    place-items: center; /* Centers both horizontally and vertically */
}
.brand-title {
    font-size: 24px;
    font-weight: bold;
    color: white; /* Change color as needed */
    margin-top: 20px;
}