/* General Body and Font Styles */
body {
    font-family: "VT323", monospace, 'Bangers', cursive;
    user-select: none!important;
    -webkit-user-select: none!important;
    -moz-user-select: none!important;
    -ms-user-select: none!important;
}

.update-alert {font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace, 'Noto Serif Khmer', 'Nokora', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", 'Bangers', cursive;}

/* Game Gallery Specific Styles (games.html) */
.gallery-body {
    background-color: #1a202c;
}

.game-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(251, 191, 36, 0.2), 0 10px 10px -5px rgba(251, 191, 36, 0.1);
}

.svg-preview {
    width: 100%;
    height: 12rem; /* 192px */
    object-fit: cover;
    background-color: #2d3748;
}

/* Common Game Styles */
.game-body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    margin: 0;
    overflow: hidden;
}

.back-link {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 50;
}
