.content-container {
    display: flex;
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: stretch;
}

.game-title {
    flex: 1;
    transition: flex 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 5px;
    cursor: pointer;
    position: relative;
}

.wip-title {
    width: 100px;
    height: 40px;
    margin: auto;
}

#hresh-title {
    margin: auto;
}

.game-title h1 {
    font-size: 2rem;
    color: #333;
    text-align: center;
    margin-bottom: auto; /* Keep the title at the center */
}

.game-title::before,
.game-title::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    transition: background 0.3s ease;
}

.game-title::before {
    left: 0;
}

.game-title::after {
    right: 0;
}

/*.game-title:hover,*/
/*.game-title:active {*/
/*    flex: 2;*/
/*    transform: scale(1.05);*/
/*}*/

#game-hresh:hover,
#game-hresh:active {
    flex: 2;
}

/* Button styling */
.game-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    margin: auto;
}

.explore-button, .play-button, .download-button {
    padding: 10px 20px;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    transition: background-color 0.3s ease;
}

.explore-button {
    background-color: #003747;
}

.download-button {
    background-color: #06668d;
}

.play-button {
    background-color: #06768d;
}

.explore-button:hover {
    background-color: #02006c;
}

.play-button:hover {
    background-color: #02006c;
}

.download-button:hover {
    background-color: #02006c;
}

#download-icon {
    width: 35px;
    height: 35px;
}

/* Style for the disabled CSS class */
.explore-button.disabled {
    pointer-events: none; /* Disable interaction */
    opacity: 0.5; /* Make it visibly disabled */
    cursor: not-allowed; /* Change the cursor to indicate it's disabled */
}

/* Style for the Alpha tag */
.alpha-tag {
    font-size: 14px;
    font-weight: bold;
    color: red;
    text-transform: uppercase;
    margin-top: 5px;
    text-align: center;
}

@media (max-width: 768px) {
    .content-container {
        flex-direction: column;
    }

    .game-title {
        margin: 0;
    }

    /*.game-title:hover,*/
    /*.game-title:active {*/
    /*    flex: 1.5;*/
    /*}*/

    .game-buttons {
        flex-direction: row;
        justify-content: center;
    }
    .explore-button, .play-button, .download-button {
        margin: auto;
    }
}

