/* --- Games Module --- */

/* Text Shadows */
.text-shadow-light {
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.5);
}

.text-shadow-md {
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.5);
}

/* Game Card (Home List) */
.game-card {
    background-color: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid #f5f5f4;
    /* stone-100 */
    position: relative;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.game-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Game Buttons */
.btn-game-primary {
    width: 100%;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    border-radius: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition-property: all;
    transition-duration: 150ms;
}

.btn-game-primary:active {
    transform: scale(0.95);
}

.btn-game-start {
    background-color: #8B2323;
    color: white;
    box-shadow: 0 10px 15px -3px rgba(127, 29, 29, 0.2);
}

.btn-game-start:hover {
    background-color: #7a1e1e;
}

.btn-game-done {
    background-color: #f5f5f4;
    /* stone-100 */
    color: #78716c;
    /* stone-500 */
}

.btn-game-done:hover {
    background-color: #e7e5e4;
    /* stone-200 */
}

/* Crafting Tool Button */
.tool-btn {
    height: 14rem;
    /* h-56 = 14rem */
    width: 100%;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    filter: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
    gap: 0.5rem;
    padding-bottom: 1rem;
}

.tool-btn:active {
    transform: scale(0.95);
}

/* Costume Option Button */
.costume-btn {
    height: 100%;
    max-height: 7rem;
    /* max-h-28 */
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #6D4C41;
    border-width: 2px;
    border-color: #8D6E63;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    padding: 0.5rem;
    padding-bottom: 1rem;
    transition: transform 150ms;
}

.costume-btn:active {
    transform: scale(0.95);
}