body {
    font-family: 'Oswald', sans-serif;
    background-color: #FDF2E9; /* Creamy off-white */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.diner-font {
    font-family: 'Lobster', cursive;
}
.nav-link {
    transition: all 0.3s ease;
}
.nav-link:hover {
    transform: translateX(5px);
    text-shadow: 1px 1px #4A4A4A;
}
.game-card {
    box-shadow: 8px 8px 0px #36454F; /* Dark gray shadow */
    transition: all 0.2s ease-in-out;
    border: 3px solid #36454F;
    position: relative; /* Needed for feedback button positioning */
}
.game-card:hover {
    transform: translate(2px, 2px);
    box-shadow: 6px 6px 0px #36454F;
}
.btn-retro {
    box-shadow: 4px 4px 0px #36454F;
    transition: all 0.2s ease-in-out;
    border: 2px solid #36454F;
    text-transform: uppercase;
}
.btn-retro:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px #36454F;
}
#nav-menu {
    transition: transform 0.3s ease-in-out;
    background-color: #40E0D0; /* Turquoise */
    border-right: 4px solid #36454F;
}
.nav-open {
    transform: translateX(0) !important;
}
.sortable-item {
    cursor: move;
    user-select: none;
}
.sortable-ghost {
    opacity: 0.4;
    background: #e2e8f0;
}
.text-shadow {
    text-shadow: 2px 2px #36454F;
}
main {
    flex-grow: 1;
}
.feedback-trigger-btn {
    position: absolute;
    bottom: 6px;
    right: 8px;
    font-size: 10px;
    color: white;
    opacity: 0.6;
    text-decoration: underline;
    cursor: pointer;
    background: none;
    border: none;
    padding: 2px 4px;
}
.feedback-trigger-btn:hover {
    opacity: 1;
}