.vmg-game-container {
    max-width: 600px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.vmg-game-title {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 28px;
}

.vmg-game-header {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: bold;
    background-color: #3498db;
    color: white;
    padding: 12px;
    border-radius: 8px;
}

.vmg-game-header > div {
    margin: 5px 0;
}

.vmg-game-board {
    display: grid;
    grid-gap: 10px;
    margin: 20px auto;
    justify-content: center;
	transition: all 0.3s ease;
}

.vmg-tile {
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 3px 3px 5px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    user-select: none;
}

.vmg-tile:hover {
    transform: scale(1.05);
}

.vmg-tile.flashed {
    background-color: #ff6b6b;
    color: white;
}

.vmg-tile.selected {
    background-color: #2ecc71;
    color: white;
}

.vmg-controls {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.vmg-button {
    padding: 10px 25px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
    min-width: 120px;
}

.vmg-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.vmg-button:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
    transform: none;
}

.vmg-message {
    margin-top: 15px;
    font-size: 18px;
    min-height: 27px;
    color: #2c3e50;
    font-weight: bold;
    padding: 10px;
    border-radius: 5px;
    background-color: #ecf0f1;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .vmg-tile {
        width: 50px;
        height: 50px;
    }
    
    .vmg-game-header {
        flex-direction: column;
        align-items: center;
    }
    
    .vmg-controls {
        flex-direction: column;
        align-items: center;
    }
    
    .vmg-button {
        width: 100%;
        max-width: 200px;
    }
}
.vmg-disabled .vmg-tile {
    pointer-events: none;
    opacity: 0.7;
	    transition: opacity 0.3s ease;
}

.vmg-tile {
    transition: all 0.3s ease;
    /* existing tile styles */
}